Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyas-goenka committed Feb 19, 2024
1 parent 09d11df commit ef83fed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ func setupLocalFiler(t *testing.T) (filer.Filer, string) {
return f, path.Join(filepath.ToSlash(tmp))
}

func setupWsfsFiler(t *testing.T) (context.Context, filer.Filer) {
func setupWsfsFiler(t *testing.T) (filer.Filer, string) {
t.Log(GetEnvOrSkipTest(t, "CLOUD_ENV"))

ctx := context.Background()
Expand All @@ -555,7 +555,7 @@ func setupWsfsFiler(t *testing.T) (context.Context, filer.Filer) {
t.Skip(aerr.Message)
}

return ctx, f
return f, tmpdir
}

func setupDbfsFiler(t *testing.T) (filer.Filer, string) {
Expand Down

0 comments on commit ef83fed

Please sign in to comment.