ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/jtreg/util/Collections/EmptyNavigableMap.java
(Generate patch)

Comparing jsr166/src/test/jtreg/util/Collections/EmptyNavigableMap.java (file contents):
Revision 1.2 by jsr166, Thu Sep 10 01:03:38 2015 UTC vs.
Revision 1.4 by jsr166, Sat Sep 17 20:38:49 2016 UTC

# Line 33 | Line 33 | import java.util.Collection;
33   import java.util.Collections;
34   import java.util.Comparator;
35   import java.util.Iterator;
36 import java.util.NoSuchElementException;
36   import java.util.NavigableMap;
37   import java.util.SortedMap;
38   import java.util.TreeMap;
# Line 41 | Line 40 | import org.testng.annotations.Test;
40   import org.testng.annotations.DataProvider;
41  
42   import static org.testng.Assert.fail;
44 import static org.testng.Assert.assertEquals;
43   import static org.testng.Assert.assertTrue;
44   import static org.testng.Assert.assertFalse;
47 import static org.testng.Assert.assertSame;
45  
46   public class EmptyNavigableMap {
47  
# Line 265 | Line 262 | public class EmptyNavigableMap {
262                      navigableMap.subMap(last, true, first, false);
263                  },
264                  IllegalArgumentException.class, description
265 <                + ": Must throw IllegalArgumentException when fromElement is not less then then toElement.");
265 >                + ": Must throw IllegalArgumentException when fromElement is not less than toElement.");
266  
267          navigableMap.subMap(first, true, last, false);
268      }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines