From 0d0180a9409397b6bfa3896333f7382cec3ace2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Radek=20L=C3=A1t?= Date: Fri, 20 Jul 2018 13:46:06 +0100 Subject: [PATCH] Missing semicolon in transactionLevel template --- templates/transactionLevel.handlebars | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/transactionLevel.handlebars b/templates/transactionLevel.handlebars index e7fcd15..2904242 100644 --- a/templates/transactionLevel.handlebars +++ b/templates/transactionLevel.handlebars @@ -8,7 +8,7 @@ it('{{testLevelDescription}}', function() { }); {{#if (isNotDefaultStatusCode expected.statusCode)}} - expect(response).to.have.status({{expected.statusCode}}) + expect(response).to.have.status({{expected.statusCode}}); {{/if}} {{#if expected.res}} {{#if hasValue}} @@ -18,4 +18,4 @@ it('{{testLevelDescription}}', function() { {{/if}} {{/if}} return chakram.wait(); - }); \ No newline at end of file + });