Skip to content

Commit

Permalink
fix: black
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCloudSec committed Feb 26, 2025
1 parent 49538ad commit 2a0cb22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/lib/utils/utils_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def test_is_owned_by_root(self):

class TestStripAnsiCodes:
def test_strip_ansi_codes_no_alteration(self):
input_string = "\x1B[31mHello\x1B[0m World"
input_string = "\x1b[31mHello\x1b[0m World"
expected_output = "Hello World"

actual_output = strip_ansi_codes(input_string)
Expand Down

0 comments on commit 2a0cb22

Please sign in to comment.