diff options
Diffstat (limited to 'ssh/test')
| -rw-r--r-- | ssh/test/recording_client_test.go | 2 | ||||
| -rw-r--r-- | ssh/test/recording_server_test.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ssh/test/recording_client_test.go b/ssh/test/recording_client_test.go index 5c7830f..b744bd3 100644 --- a/ssh/test/recording_client_test.go +++ b/ssh/test/recording_client_test.go @@ -251,7 +251,7 @@ func TestClientKeyExchanges(t *testing.T) { var keyExchanges []string for _, kex := range config.KeyExchanges { - // Exclude ecdh for now, to make them determistic we should use see a + // Exclude ecdh for now, to make them deterministic we should use see a // stream of fixed bytes as the random source. if !strings.HasPrefix(kex, "ecdh-") { keyExchanges = append(keyExchanges, kex) diff --git a/ssh/test/recording_server_test.go b/ssh/test/recording_server_test.go index fe99198..898a847 100644 --- a/ssh/test/recording_server_test.go +++ b/ssh/test/recording_server_test.go @@ -232,7 +232,7 @@ func TestServerKeyExchanges(t *testing.T) { var keyExchanges []string for _, kex := range config.KeyExchanges { - // Exclude ecdh for now, to make them determistic we should use see a + // Exclude ecdh for now, to make them deterministic we should use see a // stream of fixed bytes as the random source. // Exclude ML-KEM because server side is not deterministic. if !strings.HasPrefix(kex, "ecdh-") && !strings.HasPrefix(kex, "mlkem") { |
