From 35335c549ecc311e05add3b579dbf246ca1a22e3 Mon Sep 17 00:00:00 2001 From: Osanda Deshan Nimalarathna Date: Tue, 23 Apr 2019 06:58:46 +0530 Subject: [PATCH] Execution status changed to the past tense Fixing issue https://github.com/apoorvam/json-report/issues/7 --- generate.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generate.go b/generate.go index 416a12c..cff09ba 100644 --- a/generate.go +++ b/generate.go @@ -12,9 +12,9 @@ type errorType string type parameterType string const ( - pass status = "pass" - fail status = "fail" - skip status = "skip" + pass status = "passed" + fail status = "failed" + skip status = "skipped" notExecuted status = "not executed" stepKind tokenKind = "step" conceptKind tokenKind = "concept"