diff options
-rw-r--r-- | internal/cli/root_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/cli/root_test.go b/internal/cli/root_test.go index 806669f7..602b9d3b 100644 --- a/internal/cli/root_test.go +++ b/internal/cli/root_test.go @@ -115,6 +115,7 @@ func TestCommandNoEnvFileNoError(t *testing.T) { require.NoError(t, err) f2, err := os.Create(path.Join(tmp, ".rr.yaml")) require.NoError(t, err) + defer func() { _ = f.Close() _ = f2.Close() |