Skip to content

Commit 5621ce2

Browse files
committed
imports
1 parent f74cff7 commit 5621ce2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

WNPRC_EHR/test/src/org/labkey/test/tests/wnprc_ehr/WNPRC_EHRTest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818
import org.apache.commons.lang3.StringUtils;
1919
import org.assertj.core.api.Assertions;
20+
import org.awaitility.Awaitility;
2021
import org.jetbrains.annotations.Nullable;
2122
import org.junit.Assert;
2223
import org.junit.BeforeClass;
@@ -87,6 +88,7 @@
8788

8889
import java.io.File;
8990
import java.io.IOException;
91+
import java.time.Duration;
9092
import java.time.LocalDate;
9193
import java.time.LocalDateTime;
9294
import java.time.format.DateTimeFormatter;
@@ -3485,7 +3487,7 @@ public void updateProgramIncomeAccountWithValidPermissions() throws UnhandledAle
34853487
click(Locator.tagWithId("button","updateCreditToAccountButton"));
34863488

34873489
//Verifies the value has been changed, then continues. If value has not been changed, the test fails here.
3488-
Awaitility.await().atMost(Duration.ofSeconds(2)).untilAsserted(() ->
3490+
Awaitility.await().atMost(Duration.ofSeconds(2)).untilAsserted(() ->
34893491
assertEquals("Updated Program Income Account with invalid permissions.",
34903492
"testString", Locator.id("ctaCell1").findElement(getDriver()).getText()));
34913493

0 commit comments

Comments
 (0)