Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardDrummer committed Aug 23, 2023
1 parent b929ec8 commit c3b1cde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/suite/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ suite('Verification Gutter', () => {
LineVerificationStatus.VerifiedObsolete,
LineVerificationStatus.VerifiedObsolete
];
assert.strictEqual(expected, computedIcons);
assert.equal(expected, computedIcons);
});

test('computeGutterIconsResolved', () => {
Expand Down Expand Up @@ -253,7 +253,7 @@ suite('Verification Gutter', () => {
LineVerificationStatus.AssertionFailed,
LineVerificationStatus.ErrorContext
];
assert.strictEqual(expected, computedIcons);
assert.equal(expected, computedIcons);
});
});

Expand Down

0 comments on commit c3b1cde

Please sign in to comment.