summaryrefslogtreecommitdiff
path: root/internal/sshd/server_config_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/sshd/server_config_test.go')
-rw-r--r--internal/sshd/server_config_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/sshd/server_config_test.go b/internal/sshd/server_config_test.go
index d8e6370..2670e13 100644
--- a/internal/sshd/server_config_test.go
+++ b/internal/sshd/server_config_test.go
@@ -135,13 +135,13 @@ func TestDefaultAlgorithms(t *testing.T) {
defaultCiphers := []string{
"aes128-gcm@openssh.com",
- "chacha20-poly1305@openssh.com",
"aes256-gcm@openssh.com",
+ "chacha20-poly1305@openssh.com",
"aes128-ctr",
"aes192-ctr",
"aes256-ctr",
}
- require.Equal(t, defaultCiphers, sshServerConfig.Ciphers)
+ require.Equal(t, sshServerConfig.Ciphers, defaultCiphers)
}
func TestCustomAlgorithms(t *testing.T) {