Skip to content

Commit 9150bde

Browse files
fix: resolve ESLint no-multi-spaces violations in assetScanStatus-test.js
1 parent 190e143 commit 9150bde

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/sanity-check/api/assetScanStatus-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ async function waitForScan (stack, assetUid, expectedStatus, timeout = 60000, in
104104
const asset = await stack.asset(assetUid).fetch({ include_asset_scan_status: true })
105105
last = asset._asset_scan_status
106106
if (last === expectedStatus) return last
107-
if (last === 'not_scanned') return last // feature disabled — won't change
107+
if (last === 'not_scanned') return last // feature disabled — won't change
108108
} catch (e) { /* transient network error — keep polling */ }
109109
await wait(interval)
110110
}
@@ -117,7 +117,7 @@ async function waitForScan (stack, assetUid, expectedStatus, timeout = 60000, in
117117

118118
describe('Asset Scan Status – Non-AM Org (ORGANIZATION)', () => {
119119
let stack
120-
let freshAssetUid // uploaded at the start of this suite for scan-specific assertions
120+
let freshAssetUid // uploaded at the start of this suite for scan-specific assertions
121121
let replaceAssetUid // separate asset used for the replace-then-check test
122122

123123
before(function () {
@@ -639,7 +639,7 @@ describe('Asset Scan Status – Publish Is Always Async (§ 3.4)', () => {
639639
let stack
640640
let publishAssetUid
641641
let publishEnvironment
642-
let createdEnvironmentName = null // track if we created it so we can delete it
642+
let createdEnvironmentName = null // track if we created it so we can delete it
643643

644644
before(function () {
645645
const apiKey = process.env.API_KEY

0 commit comments

Comments
 (0)