Skip to content

Commit 3b7c3e4

Browse files
committed
update unit tests
Signed-off-by: hwassman <[email protected]>
1 parent 25555b1 commit 3b7c3e4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_parser.py

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

55
def test_case01():
66
result = os.system('python ./source/zimonGrafanaIntf.py')
7-
assert result == 0
7+
assert result > 0
88

99

1010
def test_case02():
1111
result = os.system('python ./source/zimonGrafanaIntf.py -a 2')
12-
assert result == 0
12+
assert result > 0
1313

1414

1515
def test_case03():
@@ -19,7 +19,7 @@ def test_case03():
1919

2020
def test_case04():
2121
result = os.system('python ./source/zimonGrafanaIntf.py -c 10 -m "/opt/registry/certs"')
22-
assert result == 0
22+
assert result > 0
2323

2424

2525
def test_case05():

0 commit comments

Comments
 (0)