Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
harshit-splunk committed Jan 20, 2023
1 parent b8cc18e commit f8b4f74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/k8s_objects_tests/test_config_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def test_k8s_objects(setup, test_key, test_value, expected):
assert len(events) >= expected

@pytest.mark.parametrize("test_key, test_value, expected", [
("sourcetype", "kube:object:Pod", 1),
("sourcetype", "kube:object:namespace", 1),
("sourcetype", "kube:object:node", 1)
("sourcetype", "kube:object:pods", 1),
("sourcetype", "kube:object:namespaces", 1),
("sourcetype", "kube:object:nodes", 1)
])
def test_k8s_objects_sourcetype(setup, test_key, test_value, expected):
'''
Expand Down

0 comments on commit f8b4f74

Please sign in to comment.