Skip to content

Commit

Permalink
(yegor256#1384) Remove Sticky from test
Browse files Browse the repository at this point in the history
  • Loading branch information
andreoss committed Sep 15, 2020
1 parent 0c4db78 commit 4c6bdf1
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/test/java/org/cactoos/scalar/PropertiesOfTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
import org.cactoos.io.InputOf;
import org.cactoos.map.MapEntry;
import org.cactoos.map.MapOf;
import org.cactoos.map.Sticky;
import org.junit.jupiter.api.Test;
import org.llorllale.cactoos.matchers.Assertion;
import org.llorllale.cactoos.matchers.MatcherOf;
Expand Down Expand Up @@ -85,11 +84,9 @@ void convertsMapToProperties() {
new Assertion<>(
"Must convert map to properties",
new PropertiesOf(
new Sticky<>(
new MapOf<Integer, String>(
new MapEntry<>(0, "hello, world"),
new MapEntry<>(1, "how are you?")
)
new MapOf<Integer, String>(
new MapEntry<>(0, "hello, world"),
new MapEntry<>(1, "how are you?")
)
),
new ScalarHasValue<>(
Expand Down

0 comments on commit 4c6bdf1

Please sign in to comment.