Skip to content

Commit

Permalink
Ignore 'undefined' name when obtain workspace name (eclipse-che#22121)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmytro-ndp committed Apr 3, 2023
1 parent f0466d9 commit 0ce9be3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/e2e/tests-library/WorkspaceHandlingTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class WorkspaceHandlingTests {
throw err;
}
}
if (WorkspaceHandlingTests.workspaceName !== '' && WorkspaceHandlingTests.workspaceName !== undefined) {
if (WorkspaceHandlingTests.workspaceName !== '' && WorkspaceHandlingTests.workspaceName !== 'undefined') {
Logger.info(`Obtained workspace name from workspace loader page: ${WorkspaceHandlingTests.workspaceName}`);
return;
}
Expand Down

0 comments on commit 0ce9be3

Please sign in to comment.