Skip to content

Commit 8e8edaa

Browse files
committed
fix failed test
1 parent 12f34d2 commit 8e8edaa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: marker-interface/src/test/java/ThiefTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* THE SOFTWARE.
2424
*/
2525

26-
import static org.junit.jupiter.api.Assertions.assertTrue;
26+
import static org.junit.jupiter.api.Assertions.assertFalse;
2727

2828
import org.junit.jupiter.api.Test;
2929

@@ -34,6 +34,6 @@ class ThiefTest {
3434
@Test
3535
void testThief() {
3636
var thief = new Thief();
37-
assertTrue(thief instanceof Permission);
37+
assertFalse(thief instanceof Permission);
3838
}
3939
}

0 commit comments

Comments
 (0)