Skip to content

Commit a0b77b1

Browse files
committed
Fix log messages
1 parent d4da8fe commit a0b77b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/razorIntegrationTests/formatting.integration.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,19 +61,19 @@ jestLib.describe(`Razor Formatting ${testAssetWorkspace.description}`, function
6161

6262
jestLib.expect(edits).toBeDefined();
6363

64-
console.log(`Got $(edits.length) edits`);
64+
console.log(`Got ${edits.length} edits`);
6565

6666
// It's much easier to verify the expected state of the document, than a bunch of edits
6767
const formatEdit = new vscode.WorkspaceEdit();
6868
formatEdit.set(activeDocument, edits);
6969

70-
console.log(`Applying edit $(formatEdit)`);
70+
console.log(`Applying edit ${formatEdit}`);
7171

7272
await vscode.workspace.applyEdit(formatEdit);
7373

7474
const contents = normalizeNewlines(vscode.window.activeTextEditor?.document.getText());
7575

76-
console.log(`Checking document contents`);
76+
console.log(`Checking document contents...`);
7777

7878
jestLib.expect(contents).toBe(
7979
normalizeNewlines(`@page "/bad"

0 commit comments

Comments
 (0)