Skip to content
This repository has been archived by the owner on Jul 12, 2022. It is now read-only.

Commit

Permalink
Fix variable name
Browse files Browse the repository at this point in the history
Signed-off-by: Kadu Artur Prussek <[email protected]>
  • Loading branch information
kaduartur committed Mar 5, 2021
1 parent 0b1dd52 commit 1206041
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/formula/runner/docker/runner_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,9 +176,9 @@ func TestRun(t *testing.T) {
if got != nil || tt.out.err != nil {
assert.EqualError(t, tt.out.err, got.Error())
} else {
fileCreted := filepath.Join(formulaPath, "test.txt")
assert.FileExists(t, fileCreted)
_ = os.Remove(fileCreted)
fileCreated := filepath.Join(formulaPath, "test.txt")
assert.FileExists(t, fileCreated)
_ = os.Remove(fileCreated)
}

_ = os.Chdir(pwd)
Expand Down

0 comments on commit 1206041

Please sign in to comment.