Skip to content

Commit 8f720ae

Browse files
committed
Use string instead of set
1 parent fbc695a commit 8f720ae

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lib/test/test_pickle.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -732,12 +732,12 @@ def test_invocation(self):
732732
data = {
733733
'a': [1, 2.0, 3+4j],
734734
'b': ('character string', b'byte string'),
735-
'c': {None, True, False}
735+
'c': "string"
736736
}
737737
expect = '''
738738
{'a': [1, 2.0, (3+4j)],
739739
'b': ('character string', b'byte string'),
740-
'c': {None, True, False}}
740+
'c': 'string'}
741741
'''
742742
self.set_pickle_data(data)
743743

0 commit comments

Comments
 (0)