Skip to content

Commit d24c89f

Browse files
committed
Merge branch 'develop' into lvrfrc87
2 parents 55ca618 + d5763ef commit d24c89f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_get_value.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
from netcompare import CheckType
44

55

6-
my_data = {"global": {"peers": {"10.1.0.0": "peer1", "10.2.0.0": "peer2"}}}
6+
my_data = [{"global": {"peers": {"10.1.0.0": "peer1", "10.2.0.0": "peer2"}}}]
77

88

9-
@pytest.mark.parametrize("data", [my_data])
9+
@pytest.mark.parametrize("data", my_data)
1010
def test_jmspath_return_none(data):
11-
"""Habdle exception when JMSPath retunr None."""
11+
"""Handle exception when JMSPath retunr None."""
1212
my_jmspath = "global[*]"
1313
my_check = CheckType.create(check_type="exact_match")
1414
with pytest.raises(TypeError) as error:

0 commit comments

Comments
 (0)