Skip to content
This repository has been archived by the owner on May 11, 2022. It is now read-only.

Commit

Permalink
one more try to fix broken test
Browse files Browse the repository at this point in the history
Signed-off-by: bfitzpat@redhat.com <bfitzpat@redhat.com>
  • Loading branch information
bfitzpat committed Aug 18, 2020
1 parent 49946ff commit 64408b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/suite/extension.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ suite('Extension Test Suite', () => {
test('by default, didact setting to open on startup should be false', function (done) {
const openAtStartup : boolean = getOpenAtStartupSetting();
console.log(`openAtStartup = ${openAtStartup}`);
if (openAtStartup) {
if (openAtStartup === true) {
assert.fail('Open by default setting should be false by default');
} else {
assert.ok('Open by Default setting is correctly set to false by default.');
Expand Down

0 comments on commit 64408b6

Please sign in to comment.