Skip to content

Commit 4377d05

Browse files
author
Aaron Schlesinger
committed
fix(pkg/gitreceive/storage/auth_test.go): set values to reflect that they're not invalid
1 parent 7faa08d commit 4377d05

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/gitreceive/storage/auth_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ func TestGetAuthMissingKey(t *testing.T) {
3333

3434
func TestGetAuthSuccess(t *testing.T) {
3535
fs := sys.NewFakeFS()
36-
fs.Files[accessKeyIDFile] = []byte("invalid")
37-
fs.Files[accessSecretKeyFile] = []byte("also invalid")
36+
fs.Files[accessKeyIDFile] = []byte("stuff")
37+
fs.Files[accessSecretKeyFile] = []byte("other stuff")
3838
creds, err := getAuth(fs)
3939
assert.NoErr(t, err)
4040
assert.True(t, creds != nil, "creds were nil when they shouldn't have been")

0 commit comments

Comments
 (0)