Skip to content

Commit

Permalink
Fixed issue with TranslateTextTest consistency.
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtisvg committed Oct 26, 2017
1 parent 86b0293 commit 7a08ad2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ public class TranslateTextTest {
// Assert
String got = bout.toString();
for (String language : languages) {
assertThat(got).contains(language);
bout.reset();
out.print(language);
assertThat(got).contains(bout.toString());
}
}

Expand Down

0 comments on commit 7a08ad2

Please sign in to comment.