Skip to content

Commit 1b4341e

Browse files
committed
refactor: test_methods rename variables to be more discriptive
1 parent f4aae27 commit 1b4341e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_methods.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,9 @@ def test_ior():
258258
def test_or():
259259
md1 = MirrorDict({"a": 1})
260260
md2 = MirrorDict({"b": 2})
261-
result = md1 | md2
262-
assert result["b"] == 2
263-
assert result[2] == "b"
261+
md = md1 | md2
262+
assert md["b"] == 2
263+
assert md[2] == "b"
264264

265265

266266
def test_ror():

0 commit comments

Comments
 (0)