Skip to content

Commit

Permalink
fix: resolved test errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kyranet committed Jul 24, 2022
1 parent 7b45c6e commit ed9f6c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/string-store/tests/StringStoreEntry.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('StringStoreEntry', () => {
test('GIVEN empty entry THEN size returns 0', () => {
const store = new StringStoreEntry(0, 'test');

expect(store.id).toBe(0n);
expect(store.id).toBe(0);
expect(store.name).toBe('test');
expect(store.size).toBe(0);
});
Expand Down

0 comments on commit ed9f6c8

Please sign in to comment.