aboutsummaryrefslogtreecommitdiff
path: root/ssh/common_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ssh/common_test.go')
-rw-r--r--ssh/common_test.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/ssh/common_test.go b/ssh/common_test.go
index 96744dc..a7beee8 100644
--- a/ssh/common_test.go
+++ b/ssh/common_test.go
@@ -82,11 +82,11 @@ func TestFindAgreedAlgorithms(t *testing.T) {
}
cases := []testcase{
- testcase{
+ {
name: "standard",
},
- testcase{
+ {
name: "no common hostkey",
serverIn: kexInitMsg{
ServerHostKeyAlgos: []string{"hostkey2"},
@@ -94,7 +94,7 @@ func TestFindAgreedAlgorithms(t *testing.T) {
wantErr: true,
},
- testcase{
+ {
name: "no common kex",
serverIn: kexInitMsg{
KexAlgos: []string{"kex2"},
@@ -102,7 +102,7 @@ func TestFindAgreedAlgorithms(t *testing.T) {
wantErr: true,
},
- testcase{
+ {
name: "no common cipher",
serverIn: kexInitMsg{
CiphersClientServer: []string{"cipher2"},
@@ -110,7 +110,7 @@ func TestFindAgreedAlgorithms(t *testing.T) {
wantErr: true,
},
- testcase{
+ {
name: "client decides cipher",
serverIn: kexInitMsg{
CiphersClientServer: []string{"cipher1", "cipher2"},