Skip to content

Commit

Permalink
fix(gitfs): correct signature in unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgeMac committed Aug 1, 2023
1 parent f5e37fc commit 8c42e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/gitfs/gitfs_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ var expected = map[string]string{
func Test_FS(t *testing.T) {
repo := testdataRepo(t)

filesystem, err := NewFromRepo(repo)
filesystem, _, err := NewFromRepo(repo)
require.NoError(t, err)

t.Run("Ensure invalid and non existent paths produce an error", func(t *testing.T) {
Expand Down

0 comments on commit 8c42e7a

Please sign in to comment.