We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f34d2 commit 8e8edaaCopy full SHA for 8e8edaa
marker-interface/src/test/java/ThiefTest.java
@@ -23,7 +23,7 @@
23
* THE SOFTWARE.
24
*/
25
26
-import static org.junit.jupiter.api.Assertions.assertTrue;
+import static org.junit.jupiter.api.Assertions.assertFalse;
27
28
import org.junit.jupiter.api.Test;
29
@@ -34,6 +34,6 @@ class ThiefTest {
34
@Test
35
void testThief() {
36
var thief = new Thief();
37
- assertTrue(thief instanceof Permission);
+ assertFalse(thief instanceof Permission);
38
}
39
0 commit comments