summaryrefslogtreecommitdiff
path: root/qa/qa/support/repeater.rb
diff options
context:
space:
mode:
Diffstat (limited to 'qa/qa/support/repeater.rb')
-rw-r--r--qa/qa/support/repeater.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/qa/qa/support/repeater.rb b/qa/qa/support/repeater.rb
index a4e8035f964..1b9aa809051 100644
--- a/qa/qa/support/repeater.rb
+++ b/qa/qa/support/repeater.rb
@@ -1,10 +1,11 @@
# frozen_string_literal: true
-
require 'active_support/inflector'
+require 'rainbow/refinement'
module QA
module Support
module Repeater
+ using Rainbow
DEFAULT_MAX_WAIT_TIME = 60
RepeaterConditionExceededError = Class.new(RuntimeError)
@@ -39,7 +40,7 @@ module QA
QA::Runtime::Logger.debug(msg.join(' '))
end
- QA::Runtime::Logger.debug("Attempt number #{attempts + 1}") if log && max_attempts && attempts > 0
+ QA::Runtime::Logger.debug("Attempt number #{attempts + 1}".bg(:yellow).black) if log && max_attempts && attempts > 0
result = yield
if result