Skip to content

Commit

Permalink
fix lint violations in ConfigurationParserTest
Browse files Browse the repository at this point in the history
  • Loading branch information
jelle-dc committed May 6, 2024
1 parent 1d28c11 commit 0d9ceb7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions base/src/test/kotlin/proguard/ConfigurationParserTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ class ConfigurationParserTest : FreeSpec({

"The option prints out a warning" {
customOutputStream.toString() shouldContain "Warning: The R8 option -maximumremovedandroidloglevel is currently not supported by ProGuard.\n" +
"This option will have no effect on the optimized artifact."
"This option will have no effect on the optimized artifact."
System.setOut(savedPrintStream)
}
}
Expand All @@ -243,13 +243,12 @@ class ConfigurationParserTest : FreeSpec({

"The option prints out a warning" {
customOutputStream.toString() shouldContain "Warning: The R8 option -maximumremovedandroidloglevel is currently not supported by ProGuard.\n" +
"This option will have no effect on the optimized artifact."
"This option will have no effect on the optimized artifact."
System.setOut(savedPrintStream)
}
}
}


"Wildcard type tests" - {
class TestConfig(
val configOption: String,
Expand Down

0 comments on commit 0d9ceb7

Please sign in to comment.