Skip to content

Commit

Permalink
caught success code (#1649)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashmeenkaur authored Jan 25, 2024
1 parent 2d63576 commit 17bec17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ func executeTestsForPersistentMounting(flags [][]string, m *testing.M) (successC
if err = mountGcsfuseWithPersistentMounting(flags[i]); err != nil {
setup.LogAndExit(fmt.Sprintf("mountGcsfuse: %v\n", err))
}
setup.ExecuteTestForFlagsSet(flags[i], m)
successCode = setup.ExecuteTestForFlagsSet(flags[i], m)
}
return
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func executeTestsForStaticMounting(flags [][]string, m *testing.M) (successCode
if err = mountGcsfuseWithStaticMounting(flags[i]); err != nil {
setup.LogAndExit(fmt.Sprintf("mountGcsfuse: %v\n", err))
}
setup.ExecuteTestForFlagsSet(flags[i], m)
successCode = setup.ExecuteTestForFlagsSet(flags[i], m)
}
return
}
Expand Down

0 comments on commit 17bec17

Please sign in to comment.