Skip to content

Commit

Permalink
(yegor256#1035) org.cactoos.io.Joined: add a Ctor of Iterable<Input> …
Browse files Browse the repository at this point in the history
…(tests formatting)
  • Loading branch information
ilyakharlamov committed Jan 24, 2019
1 parent 50b77c6 commit cc00c99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/cactoos/io/Joined.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public Joined(final Iterable<Input> inputs) {
/**
* Ctor.
* @param first First input
* @param rest The rest
* @param rest The other inputs
*/
public Joined(final Input first, final Input... rest) {
this(
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/cactoos/io/JoinedTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public void joinsOk() throws IOException {
@Test
public void fromIterable() {
MatcherAssert.assertThat(
"Cannot join iterable of inputs",
"Can't join iterable of inputs",
new TextOf(
new Joined(
new IterableOf<>(
Expand Down

0 comments on commit cc00c99

Please sign in to comment.