Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//depot/code/stringtemplate/java/main/": change = 4995]
  • Loading branch information
parrt committed Jun 11, 2008
1 parent 9f94467 commit 59dd448
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/antlr/stringtemplate/test/TestStringTemplate.java
Original file line number Diff line number Diff line change
Expand Up @@ -5382,8 +5382,8 @@ public void testMapKeysWithIntegerType() throws Exception {
new StringTemplate(group,
"<aMap.keys:{k|<k>:<aMap.(k)>}; separator=\", \">");
Map map = new HashMap();
map.put(1,new ArrayList(){{add("ick"); add("foo");}});
map.put(2,new ArrayList(){{add("x"); add("y");}});
map.put(new Integer(1),new ArrayList(){{add("ick"); add("foo");}});
map.put(new Integer(2),new ArrayList(){{add("x"); add("y");}});
t.setAttribute("aMap", map);
assertEquals("2:xy, 1:ickfoo",t.toString());
}
Expand Down

0 comments on commit 59dd448

Please sign in to comment.