aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/test/java/com/vaadin/tests/application/RefreshFragmentChangeTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'uitest/src/test/java/com/vaadin/tests/application/RefreshFragmentChangeTest.java')
-rw-r--r--uitest/src/test/java/com/vaadin/tests/application/RefreshFragmentChangeTest.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/uitest/src/test/java/com/vaadin/tests/application/RefreshFragmentChangeTest.java b/uitest/src/test/java/com/vaadin/tests/application/RefreshFragmentChangeTest.java
index ea415bcaae..acbd022be4 100644
--- a/uitest/src/test/java/com/vaadin/tests/application/RefreshFragmentChangeTest.java
+++ b/uitest/src/test/java/com/vaadin/tests/application/RefreshFragmentChangeTest.java
@@ -1,6 +1,7 @@
package com.vaadin.tests.application;
-import org.junit.Assert;
+import static org.junit.Assert.assertEquals;
+
import org.junit.Test;
import com.vaadin.testbench.By;
@@ -24,6 +25,6 @@ public class RefreshFragmentChangeTest extends MultiBrowserTest {
private void assertLogText(String expected) {
waitForElementPresent(By.className("v-label"));
- Assert.assertEquals("Incorrect log text,", expected, getLogRow(0));
+ assertEquals("Incorrect log text,", expected, getLogRow(0));
}
}