We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ac37026 + b9d7738 commit d8afc6aCopy full SHA for d8afc6a
tests/snippets/json_snippet.py
@@ -31,8 +31,7 @@ def round_trip_test(obj):
31
assert 1 == json.loads("1")
32
assert -1 == json.loads("-1")
33
assert 1.0 == json.loads("1.0")
34
-# TODO: uncomment once negative floats are implemented
35
-# assert -1.0 == json.loads("-1.0")
+assert -1.0 == json.loads("-1.0")
36
assert "str" == json.loads('"str"')
37
assert True is json.loads('true')
38
assert False is json.loads('false')
0 commit comments