Skip to content

Commit 498f2b7

Browse files
committed
Fix test
1 parent 276abfc commit 498f2b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

subprojects/extTest/src/test/java/org/mockitousage/plugins/switcher/PluginSwitchTest.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*/
55
package org.mockitousage.plugins.switcher;
66

7+
import java.util.ArrayList;
78
import org.junit.Test;
89
import org.mockitousage.plugins.donotmockenforcer.MyDoNotMockEnforcer;
910
import org.mockitousage.plugins.instantiator.MyInstantiatorProvider2;
@@ -13,6 +14,7 @@
1314

1415
import java.util.List;
1516

17+
import static org.assertj.core.api.Assertions.assertThat;
1618
import static java.util.Arrays.asList;
1719
import static org.junit.Assert.assertEquals;
1820
import static org.junit.Assert.fail;
@@ -24,7 +26,7 @@ public class PluginSwitchTest {
2426
@Test
2527
public void plugin_switcher_is_used() {
2628
mock(List.class);
27-
assertEquals(MyPluginSwitch.invokedFor, asList(MyMockMaker.class.getName(),
29+
assertThat(MyPluginSwitch.invokedFor).hasSameElementsAs(asList(MyMockMaker.class.getName(),
2830
MyStackTraceCleanerProvider.class.getName(),
2931
MyMockitoLogger.class.getName(),
3032
MyDoNotMockEnforcer.class.getName(),

0 commit comments

Comments
 (0)