Skip to content

Commit

Permalink
fixed actual/expected parms
Browse files Browse the repository at this point in the history
  • Loading branch information
ryaneberly committed May 10, 2016
1 parent 5a9765c commit e8a616b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/test/java/com/cflint/integration/TestFiles.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,9 @@ public void test() throws IOException, URISyntaxException, JAXBException, Transf
expectedText = actualTree;
writeExpectFile(expectedFile, actualTree);
}
assertEquals(actualTree.replaceAll("\\\\","/").replaceAll("/+","/").replaceAll("\r\n", "\n"),
expectedText.replaceAll("\\\\","/").replaceAll("/+","/").replaceAll("\r\n", "\n"));
assertEquals(
expectedText.replaceAll("\\\\","/").replaceAll("/+","/").replaceAll("\r\n", "\n"),
actualTree.replaceAll("\\\\","/").replaceAll("/+","/").replaceAll("\r\n", "\n"));
}
}

Expand Down

0 comments on commit e8a616b

Please sign in to comment.