From d1aea89c7d5bd7c36d3d73e425cb3883ee21e15e Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Thu, 17 Mar 2022 20:52:31 -0700 Subject: celanup --- integration/bunjs-only-snippets/reportError.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'integration/bunjs-only-snippets/reportError.test.js') diff --git a/integration/bunjs-only-snippets/reportError.test.js b/integration/bunjs-only-snippets/reportError.test.js index 6ba202b7f..e51f93309 100644 --- a/integration/bunjs-only-snippets/reportError.test.js +++ b/integration/bunjs-only-snippets/reportError.test.js @@ -1,7 +1,7 @@ import { it } from "bun:test"; it("reportError", () => { - console.error("---BEGIN REPORT ERROR TEST--"); + console.log("---BEGIN REPORT ERROR TEST--"); // make sure we don't crash when given non-sensical types reportError(new Error("reportError Test!")); reportError(true); @@ -21,5 +21,5 @@ it("reportError", () => { reportError([123, null]); reportError({}); reportError([{}]); - console.error("---END REPORT ERROR TEST--"); + console.log("---END REPORT ERROR TEST--"); }); -- cgit v1.2.3