diff options
Diffstat (limited to 'test/background/repositories/Mark.test.ts')
-rw-r--r-- | test/background/repositories/Mark.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/background/repositories/Mark.test.ts b/test/background/repositories/Mark.test.ts index 167e512..625f11d 100644 --- a/test/background/repositories/Mark.test.ts +++ b/test/background/repositories/Mark.test.ts @@ -9,7 +9,7 @@ describe('background/repositories/mark', () => { }); it('get and set', async() => { - let mark = { tabId: 1, url: 'http://example.com', x: 10, y: 30 }; + const mark = { tabId: 1, url: 'http://example.com', x: 10, y: 30 }; repository.setMark('A', mark); |