diff options
author | Unknwon <u@gogs.io> | 2015-09-24 17:58:40 -0400 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-09-24 17:58:40 -0400 |
commit | 4c30caad1c45fef4361f728609d4cef8f6bc2f45 (patch) | |
tree | 90b7623706c6d37d310b5474fdebc15200ae065e /modules | |
parent | 216f0477b557d5aa6a47fbb0e44d9669c2b30bd5 (diff) | |
download | gitea-4c30caad1c45fef4361f728609d4cef8f6bc2f45.tar.gz gitea-4c30caad1c45fef4361f728609d4cef8f6bc2f45.zip |
fix test import path
Diffstat (limited to 'modules')
-rwxr-xr-x | modules/crypto/ssh/keys_test.go | 2 | ||||
-rwxr-xr-x | modules/crypto/ssh/session_test.go | 2 | ||||
-rwxr-xr-x | modules/crypto/ssh/testdata_test.go | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/crypto/ssh/keys_test.go b/modules/crypto/ssh/keys_test.go index 9685fb3887..2b19ef9225 100755 --- a/modules/crypto/ssh/keys_test.go +++ b/modules/crypto/ssh/keys_test.go @@ -17,7 +17,7 @@ import ( "strings" "testing" - "github.com/gogits/gogs/modules/ssh/testdata" + "github.com/gogits/gogs/modules/crypto/ssh/testdata" ) func rawKey(pub PublicKey) interface{} { diff --git a/modules/crypto/ssh/session_test.go b/modules/crypto/ssh/session_test.go index dcc150b819..628845e4d9 100755 --- a/modules/crypto/ssh/session_test.go +++ b/modules/crypto/ssh/session_test.go @@ -16,7 +16,7 @@ import ( "net" "testing" - "github.com/gogits/gogs/modules/ssh/terminal" + "github.com/gogits/gogs/modules/crypto/ssh/terminal" ) type serverType func(Channel, <-chan *Request, *testing.T) diff --git a/modules/crypto/ssh/testdata_test.go b/modules/crypto/ssh/testdata_test.go index bd5654b325..ca43fc6d70 100755 --- a/modules/crypto/ssh/testdata_test.go +++ b/modules/crypto/ssh/testdata_test.go @@ -12,7 +12,7 @@ import ( "crypto/rand" "fmt" - "github.com/gogits/gogs/modules/ssh/testdata" + "github.com/gogits/gogs/modules/crypto/ssh/testdata" ) var ( |