Skip to content

Commit 8fc7fce

Browse files
committed
fix test
1 parent 2a34fe9 commit 8fc7fce

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

ssh_test.go

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ package ssh
22

33
import (
44
"testing"
5-
6-
"github.com/gliderlabs/ssh"
75
)
86

97
func TestKeysEqual(t *testing.T) {
@@ -13,7 +11,7 @@ func TestKeysEqual(t *testing.T) {
1311
}
1412
}()
1513

16-
if ssh.KeysEqual(nil, nil) {
14+
if KeysEqual(nil, nil) {
1715
t.Error("two nil keys should not return true")
1816
}
1917
}

0 commit comments

Comments
 (0)