Skip to content

Commit

Permalink
Merge branch 'leelaprasadv-fix-incorrect-color-print-for-few-elements…
Browse files Browse the repository at this point in the history
…' into master
  • Loading branch information
QAInsights committed Oct 16, 2020
2 parents 231f57a + 4b3b5ae commit 5f9139e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def bean_shell_sampler(flag, enabled_count):
@staticmethod
def cookie_manager(flag, enabled_count):
if not flag:
print_message(message_color=Colors.green, message=f"{enabled_count} CookieManager added.")
print_message(message_color=Colors.red, message=f"{enabled_count} CookieManager added.")
print_message(message_color=Colors.white, message="Consider adding CookieManager.")

@staticmethod
Expand All @@ -112,7 +112,7 @@ def config_test_element(flag, enabled_count):
@staticmethod
def csv_data_set(flag, enabled_count):
if not flag:
print_message(message_color=Colors.green, message=f"{enabled_count} CSV Data Set are added.")
print_message(message_color=Colors.red, message=f"{enabled_count} CSV Data Set are added.")
print_message(message_color=Colors.white, message="Consider adding CSV Data Set.")

@staticmethod
Expand Down

0 comments on commit 5f9139e

Please sign in to comment.