Skip to content

Commit 9df12cc

Browse files
committed
Add rule to use Matcher.is(true|false) with error message
1 parent b067590 commit 9df12cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jdi-light-vuetify/src/main/java/com/epam/jdi/light/vuetify/asserts/NavigationDrawerAssert.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public NavigationDrawerAssert backgroundColor(String color) {
6868

6969
@JDIAction("Check '{name}' text of items")
7070
public NavigationDrawerAssert text(List<String> values) {
71-
text(Matchers.containsInAnyOrder(values));
71+
text(Matchers.is(values));
7272
text(Matchers.hasSize(values.size()));
7373
return this;
7474
}

0 commit comments

Comments
 (0)