Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
channingdong committed Dec 9, 2024
1 parent e02c415 commit aa82fe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/serdes/serdes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func TestMain(m *testing.M) {
// Cleanup directory (with retry) here will always run after all test(s) have been executed.
for i := 0; i < 3; i++ {
err := os.RemoveAll(tempDir)
if err != nil {
if err == nil {
fmt.Printf("successfully removed temporary schema directory: %s", err)
code = 0
break
Expand Down

0 comments on commit aa82fe2

Please sign in to comment.