Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
Refs: ##36
  • Loading branch information
atuonufure committed Feb 6, 2024
1 parent dae13ec commit af52276
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/test_additional.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ def copy_deepcopy_test():
copy_1 = copy.copy(evaluate({}, "@2018"))
copy_2 = evaluate({}, "@2018").copy()

result = evaluate({}, "@2018")
deepcopy_1 = copy.deepcopy(result)
deepcopy_1 = copy.deepcopy(evaluate({}, "@2018"))

assert copy_1[0] == "2018"
assert copy_2[0] == "2018"
Expand Down

0 comments on commit af52276

Please sign in to comment.