Skip to content

Commit 286b465

Browse files
committed
fixed linting issues
1 parent 52740d8 commit 286b465

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/func/experiments/test_remove.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,6 @@ def test_keep_selected_by_rev(
252252
for exp in expected_removed:
253253
assert scm.get_ref(str(refs[exp])) is None
254254

255-
for exp in refs:
255+
for exp, ref in refs.items():
256256
if exp not in expected_removed:
257-
assert scm.get_ref(str(refs[exp])) is not None
257+
assert scm.get_ref(str(ref)) is not None

0 commit comments

Comments
 (0)