From a952c9f050d42c8fa280b0531855c2f3f8c76a92 Mon Sep 17 00:00:00 2001 From: Ilya Golovin <74474615+Ilanaya@users.noreply.github.com> Date: Mon, 19 Feb 2024 01:54:10 -0800 Subject: [PATCH] fix(tests): correct the test output results (#203) --- typescript/test/testing.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typescript/test/testing.ts b/typescript/test/testing.ts index a8a5a4d..7129d98 100644 --- a/typescript/test/testing.ts +++ b/typescript/test/testing.ts @@ -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 }