Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ritave committed Nov 7, 2022
1 parent 9ea19be commit 97a7757
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/json.test.ts
Expand Up @@ -40,7 +40,9 @@ describe('json', () => {
it('returns error message', () => {
const [error] = validate(undefined, JsonStruct);
assert(error !== undefined);
expect(error.message).toStrictEqual('Expected a valid JSON-serializable value');
expect(error.message).toStrictEqual(
'Expected a valid JSON-serializable value',
);
});
});

Expand Down

0 comments on commit 97a7757

Please sign in to comment.