From 041c437339ebbaa388602fcd0b162bdac6e515d8 Mon Sep 17 00:00:00 2001 From: yoavrotems Date: Thu, 17 Sep 2020 13:23:02 +0300 Subject: [PATCH] Set actualResult (#703) actual Result is used later on to get actual value and the --include-test-output values but it never got set so its always empty. --- check/test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/check/test.go b/check/test.go index 165c602..bb16f73 100644 --- a/check/test.go +++ b/check/test.go @@ -169,6 +169,7 @@ func (t testItem) execute(s string) *testOutput { } } + result.actualResult = s return result }