Skip to content

Commit

Permalink
test(mkf): assert file creation
Browse files Browse the repository at this point in the history
  • Loading branch information
gm0stache committed May 8, 2024
1 parent c62559d commit f267a83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/fspath/filecreator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ func TestFsCreator(t *testing.T) {

// assert
assert.NoError(t, err)
// fileExists, _ := fakeFS.fs.Exists(path)
// assert.True(t, fileExists, "file should be created")
_, err = fakeFS.fs.Stat(path)
assert.NoError(t, err, "file should be present")
})
}
}

0 comments on commit f267a83

Please sign in to comment.