Skip to content

Commit

Permalink
fix: Patch test
Browse files Browse the repository at this point in the history
  • Loading branch information
lperdereau authored and lcaflc committed Nov 4, 2024
1 parent 32f4534 commit 902fd2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pvecontrol/test_pvecontrol.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pvecontrol
from pvecontrol.utils import _filter_keys

def test_filter_keys():
input = {'test': "toto", 'none': "noninclude"}
filter = ["test"]
assert pvecontrol._filter_keys(input, filter) == {'test': "toto"}
assert _filter_keys(input, filter) == {'test': "toto"}

0 comments on commit 902fd2a

Please sign in to comment.