From 1c29f44a0a4cf6af9dac0122bf5ee489de4301a3 Mon Sep 17 00:00:00 2001 From: Ragmaanir Date: Tue, 3 Oct 2023 19:15:40 +0200 Subject: [PATCH] [CI] Fix colorizing in specs --- spec/namespace_spec.cr | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spec/namespace_spec.cr b/spec/namespace_spec.cr index 63ef382..e8921f8 100644 --- a/spec/namespace_spec.cr +++ b/spec/namespace_spec.cr @@ -59,7 +59,10 @@ describe Kommando::Namespace do root = namespace io = IO::Memory.new + c = Colorize.enabled? + Colorize.enabled = true root.run(args, io) + Colorize.enabled = c io.to_s end