1
0
Fork 0
mirror of https://github.com/ultrajson/ultrajson.git synced 2024-06-11 15:16:10 +02:00

remove compat tests

This commit is contained in:
joncrall 2022-04-17 22:01:09 -04:00
parent 84ca3d1b9f
commit 5853a4f595
No known key found for this signature in database
GPG Key ID: BE04D092BDD81C0D

View File

@ -50,7 +50,7 @@ def named_product(basis):
yield kw
def test_dumps_compatability():
def _test_dumps_compatability():
"""
Test the difference between Python's json module (pjson) and ultrajson
(ujson) under a grid of different parameters.
@ -165,4 +165,4 @@ if __name__ == "__main__":
CommandLine:
python ~/code/ultrajson/tests/test_json_compat.py
"""
test_dumps_compatability()
_test_dumps_compatability()