Skip to content

Commit

Permalink
Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rkorytkowski committed Sep 12, 2014
1 parent 2099c35 commit 96e61a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions api/src/test/java/org/openmrs/util/OpenmrsUtilTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -796,9 +796,9 @@ public void storeProperties_shouldEscapeSlashes() throws Exception {
OpenmrsUtil.storeProperties(properties, actual, null);

// Java's underlying implementation correctly writes:
// blacklistRegex=[^\\p{InBasicLatin}\\p{InLatin1Supplement}]
// This method didn't exist in Java 5, which is why we wrote a utility method in the first place, so we should
// just get rid of our own implementation, and use the underlying java one.
// blacklistRegex=[^\\p{InBasicLatin}\\p{InLatin1Supplement}]
// This method didn't exist in Java 5, which is why we wrote a utility method in the first place, so we should
// just get rid of our own implementation, and use the underlying java one.
properties.store(new OutputStreamWriter(expected, utf8), null);

assertThat(actual.toByteArray(), is(expected.toByteArray()));
Expand Down

0 comments on commit 96e61a8

Please sign in to comment.