Skip to content

Commit acd868a

Browse files
sobolevnvstinner
andauthored
Update Lib/test/test_capi/test_dict.py
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 9eafd4a commit acd868a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_capi/test_dict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ def test_dict_as_frozendict_and_clear(self):
615615
d = {1: 2, 'a': 'b'}
616616
f = check(d)
617617
self.assertIs(type(f), frozendict)
618-
self.assertEqual(f, {1: 2, 'a': 'b'})
618+
self.assertEqual(f, frozendict({1: 2, 'a': 'b'}))
619619
self.assertIs(type(d), dict)
620620
self.assertEqual(d, {})
621621

0 commit comments

Comments
 (0)