Skip to content

Commit 589b97a

Browse files
Update tests/utils/test_helpers.py
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 99f5b7d commit 589b97a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/utils/test_helpers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,12 +467,12 @@ def test_clean_empty_mixed(input_val, expected):
467467
def test_clean_empty_does_not_mutate_input():
468468
"""_clean_empty should not mutate the original input object."""
469469
original = {'a': '', 'b': 1, 'c': {'d': ''}}
470-
copy = {
470+
original_copy = {
471471
'a': '',
472472
'b': 1,
473473
'c': {'d': ''},
474474
}
475475

476476
_clean_empty(original)
477477

478-
assert original == copy
478+
assert original == original_copy

0 commit comments

Comments
 (0)