We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7faa08d commit 4377d05Copy full SHA for 4377d05
1 file changed
pkg/gitreceive/storage/auth_test.go
@@ -33,8 +33,8 @@ func TestGetAuthMissingKey(t *testing.T) {
33
34
func TestGetAuthSuccess(t *testing.T) {
35
fs := sys.NewFakeFS()
36
- fs.Files[accessKeyIDFile] = []byte("invalid")
37
- fs.Files[accessSecretKeyFile] = []byte("also invalid")
+ fs.Files[accessKeyIDFile] = []byte("stuff")
+ fs.Files[accessSecretKeyFile] = []byte("other stuff")
38
creds, err := getAuth(fs)
39
assert.NoErr(t, err)
40
assert.True(t, creds != nil, "creds were nil when they shouldn't have been")
0 commit comments