--- jsr166/src/test/tck/EntryTest.java 2009/11/21 02:07:26 1.3 +++ jsr166/src/test/tck/EntryTest.java 2010/08/25 00:07:03 1.5 @@ -11,7 +11,7 @@ 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); @@ -126,7 +126,7 @@ public class EntryTest extends JSR166Tes assertEquals(v1, s.getValue()); try { s.setValue(k2); - fail(); + shouldThrow(); } catch (UnsupportedOperationException success) {} } }