Skip to content

Commit

Permalink
test: fix a function name
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent committed Jan 11, 2024
1 parent d8617ce commit 85167c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parser.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ describe('Parser', () => {
});

it('should parse multiline descriptions', async () => {
const node = contract.vFunctions.find(({ name }) => name === '_viewComplex')!;
const node = contract.vFunctions.find(({ name }) => name === '_viewMultiline')!;
const result = parser.parseNodeNatspec(node);

expect(result).toEqual(mockNatspec({
Expand Down

0 comments on commit 85167c7

Please sign in to comment.