Skip to content

Commit 876c15e

Browse files
committed
enhance variable name
1 parent 33ce9b3 commit 876c15e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/test_diffraction_objects.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,6 @@ def test_copy_object():
420420
yarray=np.array([1.0, 2.0, 3.0]),
421421
xtype="tth",
422422
)
423-
copy_of_DO = do.copy()
424-
assert do == copy_of_DO
425-
assert id(do) != id(copy_of_DO)
426-
423+
do_copy = do.copy()
424+
assert do == do_copy
425+
assert id(do) != id(do_copy)

0 commit comments

Comments
 (0)