Skip to content

Commit edaf852

Browse files
committed
ADAP-162: Fix test maxWidthHeight for Runtime 13.x
1 parent 204e18b commit edaf852

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed
-24 Bytes
Binary file not shown.

src/test/java/com/openfin/desktop/WindowTest.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ public class WindowTest {
3131

3232
private static final String DESKTOP_UUID = WindowTest.class.getName();
3333
private static DesktopConnection desktopConnection;
34-
private static final String child_window_url = "http://test.openf.in/test.html"; // simple test app
3534
private static final String guest_url = "https://example.com/";
3635

3736
@BeforeClass
@@ -219,7 +218,7 @@ public void dockAndUndock() throws Exception {
219218
String childName = "docking test";
220219
Application application = TestUtils.runApplication(TestUtils.getAppOptions(null), desktopConnection);
221220
Window mainWindow = application.getWindow();
222-
WindowOptions childOptions = TestUtils.getWindowOptions(childName, child_window_url);
221+
WindowOptions childOptions = TestUtils.getWindowOptions(childName, guest_url);
223222
Window childWindow = TestUtils.createChildWindow(application, childOptions, desktopConnection);
224223
WindowBounds beforeMoveBounds = TestUtils.getBounds(childWindow);
225224
CountDownLatch joinLatch = new CountDownLatch(1);

0 commit comments

Comments
 (0)