Skip to content

Commit

Permalink
WEBUI-1628: corrected variables naming
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Feb 3, 2025
1 parent 29220de commit f904450
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/nuxeo-web-ui-ftest/scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ try {
if (response.ok) {
return response
.text()
.then((response1) => {
const obj = JSON.parse(response1);
const cftVersion = obj.channels.Stable.version;
.then((responseJSON) => {
const responseObj = JSON.parse(responseJSON);
const cftVersion = responseObj.channels.Stable.version;
// eslint-disable-next-line no-console
console.log(`ChromeForTesting ${cftVersion} detected.`);
})
Expand Down

0 comments on commit f904450

Please sign in to comment.