Skip to content

Commit

Permalink
test: fix a test
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent committed Feb 16, 2024
1 parent da88f49 commit 80ee1bc
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions test/parser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -379,16 +379,7 @@ describe('Parser', () => {
const node = findNode(contract.vFunctions, '_viewBlockLinterFail');
const result = parseNodeNatspec(node);

expect(result).toEqual(
mockNatspec({
tags: [
{
name: 'notice',
content: 'Some text',
},
],
})
);
expect(result).toEqual(mockNatspec({}));
});

it('should parse natspec with invalid formatting', async () => {
Expand Down

0 comments on commit 80ee1bc

Please sign in to comment.