Skip to content

Commit b0729ae

Browse files
eendebakptvstinner
andauthored
Update Lib/test/test_copy.py
Co-authored-by: Victor Stinner <vstinner@python.org>
1 parent 8399c49 commit b0729ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_copy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ def test_deepcopy_dict(self):
426426
self.assertIsNot(x["foo"], y["foo"])
427427

428428
def test_deepcopy_frozendict(self):
429-
x = {"foo": [1, 2], "bar": 3}
429+
x = frozendict({"foo": [1, 2], "bar": 3})
430430
y = copy.deepcopy(x)
431431
self.assertEqual(y, x)
432432
self.assertIsNot(x, y)

0 commit comments

Comments
 (0)