From 3515c8b412159ada515f5e4e1d735bd3b92aacbf Mon Sep 17 00:00:00 2001 From: Cleon <18450687+meld-cp@users.noreply.github.com> Date: Thu, 5 Jan 2023 19:14:17 +1300 Subject: [PATCH] . --- src/assert-impl.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/assert-impl.ts b/src/assert-impl.ts index dc6a378..87474ad 100644 --- a/src/assert-impl.ts +++ b/src/assert-impl.ts @@ -1,7 +1,7 @@ import { MessageModal } from "./modal-message"; import { TAssertRunContext } from "./run-context"; -export class AssertImplemention implements TAssertRunContext{ +export class AssertImplemention implements TAssertRunContext { private async showFailMessage( label:string, msg:string ) : Promise{ const title = '❗ Assert Failed' + ( label.length > 0 ? ` - ${label}` : '' ); @@ -54,4 +54,4 @@ export class AssertImplemention implements TAssertRunContext{ throw new Error(msg); } -} \ No newline at end of file +}