Skip to content

Commit

Permalink
fix(tests): correct the test output results (#203)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilanaya authored Feb 19, 2024
1 parent 273cfe5 commit a952c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typescript/test/testing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export const fourslashLikeTester = (contents: string, fileName = entrypoint, { d
)!
const newContentsActual = tsFull.textChanges.applyChanges(getCurrentFile(), edits[0]!.textChanges)
if (newContent) {
expect(dedentString(newContent), `at marker ${mark}`).toEqual(newContentsActual)
expect(newContentsActual, `at marker ${mark}`).toEqual(dedentString(newContent))
}
return newContentsActual
}
Expand Down

0 comments on commit a952c9f

Please sign in to comment.