Skip to content

Commit eea29db

Browse files
committed
added strict equality
1 parent 9b64a29 commit eea29db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

commands/utils/batch/batch_runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ function run_test(payload, env = "prod", rejectUnauthorized) {
7171
)
7272
);
7373
smartuiLink = responseData["value"]["smartuiLink"]
74-
if (smartuiLink != undefined && smartuiLink != "") {
74+
if (smartuiLink !== undefined && smartuiLink !== "") {
7575
console.log('SmartUI link for the project: ' + smartuiLink)
7676
}
7777
resolve(session_id);

0 commit comments

Comments
 (0)