Skip to content

Commit cccf157

Browse files
committed
revert not required chnges
Signed-off-by: hwassman <[email protected]>
1 parent 0390361 commit cccf157

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/test_parser.py

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

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

910

1011
def test_case02():
1112
result = os.system('python ./source/zimonGrafanaIntf.py -a 2')
12-
assert result > 0
13+
assert result == 0
1314

1415

1516
def test_case03():
@@ -19,7 +20,7 @@ def test_case03():
1920

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

2425

2526
def test_case05():

0 commit comments

Comments
 (0)