Skip to content

Commit 91650cb

Browse files
committed
fixing linter erors
1 parent 0c03ad2 commit 91650cb

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

wmi_check/tests/test_wmi_check.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@
44

55
import copy
66
import logging
7-
import pytest
87
from unittest.mock import patch
98

9+
import pytest
10+
1011
from . import common
1112

1213
log = logging.getLogger(__file__)
@@ -116,7 +117,7 @@ def test_tag_queries_without_alias(mock_sampler_with_tag_queries, aggregator, ch
116117
('Name AS wmi_name', ['wmi_name:foo']),
117118
('Name,Label AS wmi_label', ['name:foo', 'wmi_label:bar']),
118119
('name as wmi_name,label as wmi_label', ['wmi_name:foo', 'wmi_label:bar']),
119-
('nameaswmi_name', [])
120+
('nameaswmi_name', []),
120121
],
121122
)
122123
def test_tag_by_is_correctly_prefixed(mock_sampler_with_tag_by_prefix, aggregator, check, tag_by, result_tags):

0 commit comments

Comments
 (0)