From 19a1d6defe103f01e4f7b67d0c5e26d5bbce77b1 Mon Sep 17 00:00:00 2001 From: Ezequiel Muns Date: Fri, 8 Oct 2021 17:25:32 +0200 Subject: [PATCH] Fix compilation error --- convey/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convey/context.go b/convey/context.go index c1ba844d..4b0d28dc 100644 --- a/convey/context.go +++ b/convey/context.go @@ -187,7 +187,7 @@ func (ctx *context) SoMsg(msg string, actual interface{}, assert Assertion, expe } else { ctx.reporter.Enter(reporting.NewScopeReport(msg)) defer ctx.reporter.Exit() - ctx.assertionReport(reporting.NewFailureReport(result)) + ctx.assertionReport(reporting.NewFailureReport(result, ctx.shouldShowStack())) } }