We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ce9a0f commit 2f8b07aCopy full SHA for 2f8b07a
1 file changed
src/test/java/org/opentesting/modultest/PauseTests.java
@@ -21,11 +21,11 @@ class PauseTests {
21
@Test
22
void testPause() {
23
24
- pause.pause(true, null);
+ pause.pause(true, Pause.ALLPAUSELABEL);
25
26
Assert.assertTrue(pause.isPause(Arrays.asList("foo", "bar"), "junit pause test"));
27
28
- pause.pause(false, null);
+ pause.pause(false, Pause.ALLPAUSELABEL);
29
30
Assert.assertTrue(!pause.isPause(Arrays.asList("foo", "bar"), "junit pause test"));
31
0 commit comments