Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
treycucco committed Aug 30, 2023
1 parent cd6ad9b commit 8610de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions/write.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ describe(getBestPracticeFileLines, () => {
'This is line one of the description.',
'And this is line 2!',
'',
`[someFile.ts lines 10-18](${codeUrl}/someFile.ts#L10-L18)`,
'```ts',
'const add = (a: number) => (b: number) => {',
' return a + b;',
'};',
'return add(5);',
'```',
`From [someFile.ts lines 10-18](${codeUrl}/someFile.ts#L10-L18)`,
]);
});
});

0 comments on commit 8610de5

Please sign in to comment.