Skip to content

Commit

Permalink
fix: use copy.deepcopy in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Sep 14, 2022
1 parent 7b63af4 commit 894aa3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/v2/test_0511-copy-and-deepcopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test():
{"x": 4, "y": 4.4},
]
)
record = a[2].layout.__deepcopy__()
record = copy.deepcopy(a[2].layout)
a["z"] = a.x**2

assert to_list(a) == [
Expand Down

0 comments on commit 894aa3f

Please sign in to comment.