Skip to content

Commit dc5671f

Browse files
authored
[purview] fix linter error (Azure#21546)
to unblock js - eslint-plugin - ci build, while we are still investigating why the error is not reported by PR validation.
1 parent 444dc5c commit dc5671f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sdk/purview/purview-catalog-rest/test/public/glossary.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ describe("purview catalog glossary test", () => {
3737
console.log("created glossary: ", glossary);
3838

3939
assert.strictEqual(glossary.status, "200");
40-
glossaryGuid = glossary.status == "200" ? glossary?.body?.guid || "" : "";
40+
glossaryGuid = glossary.status === "200" ? glossary?.body?.guid || "" : "";
4141
});
4242

4343
it("should work with LRO helper", async () => {

0 commit comments

Comments
 (0)