Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
past committed Dec 28, 2024
1 parent 6c20c8b commit e7d28a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/components/test/wpt-flags.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@
test('localStorage', () => {
assert.isTrue(editor instanceof WPTFlagsEditor);
editor.queryBuilder = true;
expect(window.localStorage.getItem("features.queryBuilder")).to.equal('true');
expect(window.localStorage.getItem('features.queryBuilder')).to.equal('true');
editor.queryBuilder = false;
expect(window.localStorage.getItem("features.queryBuilder")).to.equal('false');
expect(window.localStorage.getItem('features.queryBuilder')).to.equal('false');
});
});
});
Expand Down

0 comments on commit e7d28a8

Please sign in to comment.