Skip to content

Commit d982aa4

Browse files
vijaykanthmiennae
authored andcommitted
fix(security center): lint fix
1 parent 0d433bf commit d982aa4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

security-center/snippets/system-test/v2/assetSecurityMarks.test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ describe('client with security marks for assets', async () => {
6666
// Ensure marks are set.
6767
exec(`node v2/addSecurityMarks.js ${data.assetName}`);
6868

69-
const output = exec(`node v2/deleteAssetsSecurityMarks.js ${data.assetName}`);
69+
const output = exec(
70+
`node v2/deleteAssetsSecurityMarks.js ${data.assetName}`
71+
);
7072
assert.notMatch(output, /key_a/);
7173
assert.notMatch(output, /value_a/);
7274
assert.notMatch(output, /key_b/);
@@ -75,5 +77,4 @@ describe('client with security marks for assets', async () => {
7577
assert.include(output, data.assetName);
7678
assert.notMatch(output, /undefined/);
7779
});
78-
7980
});

0 commit comments

Comments
 (0)