Skip to content

Commit

Permalink
fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rmic committed Nov 28, 2024
1 parent 52740d8 commit 286b465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/func/experiments/test_remove.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,6 @@ def test_keep_selected_by_rev(
for exp in expected_removed:
assert scm.get_ref(str(refs[exp])) is None

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

0 comments on commit 286b465

Please sign in to comment.