Skip to content

Commit

Permalink
Trying to pass appveyor - issues with latin chars
Browse files Browse the repository at this point in the history
  • Loading branch information
ixmanuel committed Jul 21, 2017
1 parent 1595c3b commit 13c51a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/java/org/cactoos/io/InputOfTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -302,16 +302,16 @@ public void readsEncodedArrayOfChars() throws IOException {
new InputAsBytes(
new InputOf(
new char[]{
'O', ' ', 'q', 'u', 'e', ' ', 's', 'e', 'r', 'á',
' ', 'q', 'u', 'e', ' ', 's', 'e', 'r', 'á',
'O', ' ', 'q', 'u', 'e', ' ', 's', 'e', 'r', 'a',
' ', 'q', 'u', 'e', ' ', 's', 'e', 'r', 'a',
}
)
).asBytes(),
StandardCharsets.UTF_8
),
Matchers.allOf(
Matchers.startsWith("O que será"),
Matchers.endsWith(" que será")
Matchers.startsWith("O que sera"),
Matchers.endsWith(" que sera")
)
);
}
Expand Down

0 comments on commit 13c51a6

Please sign in to comment.