Skip to content

Commit

Permalink
fix: test tear down in OssBulkFileListenerTest
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiandoetsch committed Jan 8, 2024
1 parent 45ef1cd commit 13dfc24
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/test/kotlin/snyk/oss/OssBulkFileListenerTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,11 @@ class OssBulkFileListenerTest : BasePlatformTestCase() {

override fun tearDown() {
resetSettings(project)
super.tearDown()
try {
super.tearDown()
} catch (ignore: Exception) {
// nothing to do
}
}

@Test
Expand Down

0 comments on commit 13dfc24

Please sign in to comment.