--- jsr166/src/test/tck/EntryTest.java 2009/11/02 20:28:31 1.2 +++ jsr166/src/test/tck/EntryTest.java 2009/11/21 17:38:05 1.4 @@ -11,10 +11,10 @@ import java.io.*; public class EntryTest extends JSR166TestCase { public static void main(String[] args) { - junit.textui.TestRunner.run (suite()); + junit.textui.TestRunner.run (suite()); } public static Test suite() { - return new TestSuite(EntryTest.class); + return new TestSuite(EntryTest.class); } static final String k1 = "1"; @@ -126,7 +126,7 @@ public class EntryTest extends JSR166Tes assertEquals(v1, s.getValue()); try { s.setValue(k2); - fail(); + shouldThrow(); } catch (UnsupportedOperationException success) {} } }