From 08ab628fc48d14e1e337421cd42e0b1d9adca748 Mon Sep 17 00:00:00 2001 From: Luis Brito Date: Wed, 10 Mar 2021 08:44:57 -0300 Subject: [PATCH] test: fix failed tests --- tests/SentryTransport.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/SentryTransport.ts b/tests/SentryTransport.ts index b1e3093..49c6e3b 100644 --- a/tests/SentryTransport.ts +++ b/tests/SentryTransport.ts @@ -11,6 +11,6 @@ describe("lib.logger.SentryTransport", () => { }); logger.info("Test sentry with jest"); - logger.error(new BaseError("Error test sentry with jest")); + logger.error("messaage", new BaseError("Error test sentry with jest")); }); });