Skip to content

Commit

Permalink
Enable all agree checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 18, 2022
1 parent 70e9085 commit 6861525
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions tests/test_json_compat.py
Expand Up @@ -72,21 +72,21 @@ def test_dumps_compatability():
UTF_SURROGATE1024 = '\udfff'
param_basis = {
'indent': [
# -1,
# -2,
# ' ',
# ' ab ',
# 4, 0,
# None,
# '\t',
# NULL_CHAR,
-1,
-2,
' ',
' ab ',
4, 0,
None,
'\t',
NULL_CHAR,
UTF_SURROGATE0000,
# UTF_SURROGATE1024,
UTF_SURROGATE1024,
],
'ensure_ascii': [False],
# 'ensure_ascii': [True, False, None],
# 'sort_keys': [True, False, None],
# 'default': [None, str],
# 'ensure_ascii': [False],
'ensure_ascii': [True, False, None],
'sort_keys': [True, False, None],
'default': [None, str],
'module': list(JSON_IMPLS.keys()),
}
kwargs_keys = ['indent', 'default', 'ensure_ascii', 'sort_keys']
Expand Down

0 comments on commit 6861525

Please sign in to comment.