Skip to content

Commit

Permalink
fix: missed a spot
Browse files Browse the repository at this point in the history
Signed-off-by: Kit Patella <[email protected]>
  • Loading branch information
mkcp committed Sep 25, 2024
1 parent 5a4241e commit ac3db17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/external/ext_in_cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ func (suite *ExtInClusterTestSuite) Test_1_Deploy() {
// FIXME(mkcp): This code always fails to clean up the tmpdir. We're passing it a directory with contents and we
// need os.RemoveAll(temp) instead. However, we're also getting what looks to be a bug with concurrent writers
// causing a subtest to panic when we call RemoveAll(). Fixing this would require removing the shared state.
_ = os.Remove(temp) // nolint:errcheck
_ = os.Remove(temp) //nolint:errcheck
}

func TestExtInClusterTestSuite(t *testing.T) {
Expand Down

0 comments on commit ac3db17

Please sign in to comment.