diff options
author | Batuhan Taskaya <isidentical@gmail.com> | 2022-01-14 19:47:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 08:47:10 -0800 |
commit | 87629706c933a33adbfb5b4f5e435be722eb057b (patch) | |
tree | 5a5f5881005219e2f905a7e6a9dcb18e686b5118 /tests | |
parent | 3856f94d3de23829277d02f5e5301119175a8d07 (diff) |
Change the default style for windows from fruity to auto (#1268)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_json.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/test_json.py b/tests/test_json.py index ae748340..b454c034 100644 --- a/tests/test_json.py +++ b/tests/test_json.py @@ -6,7 +6,6 @@ import responses from httpie.cli.constants import PRETTY_MAP from httpie.cli.exceptions import ParseError from httpie.cli.nested_json import HTTPieSyntaxError -from httpie.compat import is_windows from httpie.output.formatters.colors import ColorFormatter from httpie.utils import JsonDictPreservingDuplicateKeys @@ -39,7 +38,7 @@ TEST_JSON_VALUES = [ False, None, ] -TEST_PREFIX_TOKEN_COLOR = '\x1b[38;5;15m' if is_windows else '\x1b[04m\x1b[91m' +TEST_PREFIX_TOKEN_COLOR = '\x1b[04m\x1b[91m' JSON_WITH_DUPES_RAW = '{"key": 15, "key": 15, "key": 3, "key": 7}' JSON_WITH_DUPES_FORMATTED_SORTED = """{ |