Skip to content

Commit 5d28e1e

Browse files
committed
Change test_evalute_Cookies to compare against ""
Should make it easier to debug #2804 if the actual value that makes the test fail on the server is shown directly.
1 parent a0d6ffc commit 5d28e1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/org.eclipse.swt.tests/JUnit Tests/org/eclipse/swt/tests/junit/Test_org_eclipse_swt_browser_Browser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ public void test_evalute_Cookies () {
416416
// Retrieve entire cookie store
417417
String res = (String) browser.evaluate("return document.cookie;");
418418

419-
assertFalse(res.isEmpty());
419+
assertEquals("", res);
420420
}
421421

422422
@Tag("gtk4-todo")

0 commit comments

Comments
 (0)