Skip to content

Commit bea31c4

Browse files
committed
test: python stability fixes
1 parent f3a4636 commit bea31c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/helpers.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ export async function getLatestURLWithToken() {
554554
const response = await fetch(`${TEST_APPLICATION_SERVER_BASE_URL}/token`);
555555
const respBody = await response.json();
556556
latestURLWithToken = respBody.latestURLWithToken;
557-
if (latestURLWithToken === undefined) {
557+
if (latestURLWithToken === undefined || latestURLWithToken === "") {
558558
if (Date.now() - start > 10000) {
559559
throw new Error("Timeout waiting for latestURLWithToken");
560560
}

0 commit comments

Comments
 (0)