Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
Catch errors when deleting file in FineTuningTest
Browse files Browse the repository at this point in the history
Thsi is failing repeatedly and it's not a big deal if we don't clean this up.
  • Loading branch information
TheoKanning committed Oct 22, 2023
1 parent e7635c3 commit 17dde76
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ static void setup() throws Exception {

@AfterAll
static void teardown() {
service.deleteFile(fileId);
try {
service.deleteFile(fileId);
} catch (Exception e) {
// ignore
}
}

@Test
Expand Down

0 comments on commit 17dde76

Please sign in to comment.