Skip to content

Commit d3d08bf

Browse files
format
1 parent 689587c commit d3d08bf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/test/editor.tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ export async function runAceEditorTests(writeOutput) {
178178
runner.test("Scroll API", async (test) => {
179179
await withEditor(test, async (editor) => {
180180
editor.setValue(Array(100).fill("line").join("\n"), -1);
181-
editor.scrollToLine(50, true, true, () => { });
181+
editor.scrollToLine(50, true, true, () => {});
182182

183183
const firstVisibleRow = editor.renderer.getFirstVisibleRow();
184184
test.assert(firstVisibleRow >= 0);

src/test/tester.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ class TestRunner {
200200

201201
line(
202202
` Tests: ${COLORS.BRIGHT}${total}${COLORS.RESET} | ` +
203-
`${statusColor}Passed: ${this.passed}${COLORS.RESET} | ` +
204-
`${COLORS.RED}Failed: ${this.failed}${COLORS.RESET}`,
203+
`${statusColor}Passed: ${this.passed}${COLORS.RESET} | ` +
204+
`${COLORS.RED}Failed: ${this.failed}${COLORS.RESET}`,
205205
statusColor,
206206
);
207207

0 commit comments

Comments
 (0)