From 42933e6bb0958ffeb75b7051a2de540eace6f5e4 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 4 Jun 2017 19:08:36 +0200 Subject: [PATCH] refactor some code --- ts/tapbundle.classes.taptools.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/tapbundle.classes.taptools.ts b/ts/tapbundle.classes.taptools.ts index e3b0b6a..7eb0db5 100644 --- a/ts/tapbundle.classes.taptools.ts +++ b/ts/tapbundle.classes.taptools.ts @@ -15,14 +15,14 @@ export class TapTools { /** * allow failure */ - allowFailure() { + allowFailure () { this._tapTest.failureAllowed = true } /** * async/await delay method */ - async delayFor(timeMilliArg) { + async delayFor (timeMilliArg) { await plugins.smartdelay.delayFor(timeMilliArg) }