File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "python.linting.pylintEnabled" : true
3+ }
Original file line number Diff line number Diff line change 1818import os
1919import sys
2020import unittest
21-
2221from collections import OrderedDict
2322from string import printable
2423
2827 # Make the `hypothesis` library optional, so that the other tests will
2928 # still run if it isn't installed.
3029 import hypothesis .strategies as some
31-
3230 from hypothesis import given
3331
3432 some_json = some .recursive (
@@ -375,7 +373,7 @@ def _custom_serializer(obj):
375373
376374 self .assertRaises (TypeError , json5 .dumps , set ())
377375 self .assertEqual (json5 .dumps (set (), default = _custom_serializer ),
378- 'something' )
376+ '" something" ' )
379377
380378 def test_ensure_ascii (self ):
381379 self .check (u'\u00fc ' , '"\\ u00fc"' )
You can’t perform that action at this time.
0 commit comments