diff --git a/src/test/java/com/geekcap/vmturbo/ThingTest.java b/src/test/java/com/geekcap/vmturbo/ThingTest.java index 40ca08c3..7f6f5586 100644 --- a/src/test/java/com/geekcap/vmturbo/ThingTest.java +++ b/src/test/java/com/geekcap/vmturbo/ThingTest.java @@ -12,6 +12,6 @@ public class ThingTest { public void testN() { Thing t = new Thing(); t.setN(5); - Assert.assertEquals("N should be 5", 15, t.getN()); + Assert.assertEquals("N should be 5", 5, t.getN()); } }