We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85dcc4e commit cf40b41Copy full SHA for cf40b41
1 file changed
tests/test_devices.py
@@ -5,7 +5,8 @@
5
6
@pytest.mark.parametrize("kwargs, expected", [
7
({"in_val": "W7DTMJ19R2F", "input_type": "computer_name", }, "A1", ),
8
- ({"in_val": "A2", "input_type": "rig_id", }, "W7DTMJ35Y0T", ),
+ ({"in_val": "w7dtmj19r2f", "input_type": "computer_name", }, "A1", ),
9
+ ({"in_val": "A2", "input_type": "rig_id", }, "w7dtmj35y0t", ),
10
({"in_val": "NOT_A_NAME", "input_type": "computer_name", }, "unknown", ),
11
])
12
def test_get_rid_id(kwargs, expected):
0 commit comments