From 924957080fee74c90d0ae313c62fa10f8ca637c9 Mon Sep 17 00:00:00 2001 From: Malet Date: Mon, 6 Feb 2017 15:21:49 +0000 Subject: [PATCH] Add green colour for the pass ticks --- libexec/bats-format-tap-stream | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/bats-format-tap-stream b/libexec/bats-format-tap-stream index 614768f..315ff14 100755 --- a/libexec/bats-format-tap-stream +++ b/libexec/bats-format-tap-stream @@ -39,7 +39,7 @@ begin() { pass() { go_to_column 0 - printf " ✓ %s" "$name" + printf " $(set_color 2)✓$(clear_color) %s" "$name" advance }