Skip to content

Commit

Permalink
[JENKINS-23635] Update of test case.
Browse files Browse the repository at this point in the history
Tags are now printed in upper case when ignoreCase is set.
  • Loading branch information
uhafner committed Sep 4, 2014
1 parent b8a7a0e commit 59ecf51
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/test/java/plugins/TaskScannerPluginTest.java
Expand Up @@ -975,9 +975,8 @@ private void assertTypesTabFS1E1(TaskScannerAction tsa){
private void assertTypesTabFS1E2(TaskScannerAction tsa){
SortedMap<String, Integer> expectedContent = new TreeMap<>();

expectedContent.put("@Deprecated", 1);
expectedContent.put("FIXME", 1);
expectedContent.put("fixme", 1);
expectedContent.put("@DEPRECATED", 1);
expectedContent.put("FIXME", 2);
expectedContent.put("TODO", 4);
expectedContent.put("BUG", 1);
expectedContent.put("XXX", 1);
Expand Down

0 comments on commit 59ecf51

Please sign in to comment.