Skip to content

Commit

Permalink
yegor256#1508 Joined(items, item) ctor is missing
Browse files Browse the repository at this point in the history
Fix qulice fail
  • Loading branch information
ainur committed Jan 6, 2021
1 parent 0493b62 commit eb202e1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/test/java/org/cactoos/iterator/JoinedTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ void joinItemAndIterable() {
@SuppressWarnings("unchecked")
void joinIterableAndItem() {
new Assertion<>(
"Must join iterable and item",
new IterableOf<>(
new Joined<>(
new IteratorOf<>(1, 2, 3),
0
)
),
new IsEqual<>(new IterableOf<>(1, 2, 3, 0))
"Must join iterable and item",
new IterableOf<>(
new Joined<>(
new IteratorOf<>(1, 2, 3),
0
)
),
new IsEqual<>(new IterableOf<>(1, 2, 3, 0))
).affirm();
}
}

0 comments on commit eb202e1

Please sign in to comment.