From fa6e454ae91d322dab2e73ccf305ee6377f59c3c Mon Sep 17 00:00:00 2001 From: Lucaskyy Date: Thu, 24 Mar 2022 23:31:01 +0100 Subject: [PATCH] test: fix assert message --- src/test/kotlin/app/revanced/patcher/PatcherTest.kt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/kotlin/app/revanced/patcher/PatcherTest.kt b/src/test/kotlin/app/revanced/patcher/PatcherTest.kt index 00f3ebb..94824da 100644 --- a/src/test/kotlin/app/revanced/patcher/PatcherTest.kt +++ b/src/test/kotlin/app/revanced/patcher/PatcherTest.kt @@ -157,7 +157,9 @@ internal class PatcherTest { fun `should not raise an exception if any signature member except the name is missing`() { val sigName = "testMethod" - assertDoesNotThrow("Should raise an exception because opcodes is empty") { + assertDoesNotThrow( + "Should not raise an exception if any signature member except the name is missing" + ) { Patcher( PatcherTest::class.java.getResourceAsStream("/test1.jar")!!, ByteArrayOutputStream(),