We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23be965 commit 67715a4Copy full SHA for 67715a4
osgtest/tests/test_06_fetch_crl.py
@@ -31,6 +31,8 @@ class TestFetchCrl(osgunittest.OSGTestCase):
31
def output_is_acceptable(self, fetch_crl_output):
32
all_lines_ok = True
33
for line in fetch_crl_output.rstrip('\n').split('\n'):
34
+ if not line: # skip blank lines
35
+ continue
36
line_ok = False
37
for error_string in TestFetchCrl.error_message_whitelist:
38
if re.search(error_string, line):
0 commit comments