diff --git a/internal/testrunner/runners/pipeline/test_result.go b/internal/testrunner/runners/pipeline/test_result.go index 0782b8b1f7..899c7d6a89 100644 --- a/internal/testrunner/runners/pipeline/test_result.go +++ b/internal/testrunner/runners/pipeline/test_result.go @@ -106,8 +106,8 @@ func diffJson(want, got []byte) (string, error) { opts := jsondiff.DefaultConsoleOptions() // Remove colored output. - opts.Added = jsondiff.Tag{} - opts.Removed = jsondiff.Tag{} + opts.Added = jsondiff.Tag{Begin: "+ "} + opts.Removed = jsondiff.Tag{Begin: "- "} opts.Changed = jsondiff.Tag{} opts.Skipped = jsondiff.Tag{}