Skip to content

Commit 0a1029d

Browse files
committed
Add docstring for fetch-crl output checker function
1 parent f8ec808 commit 0a1029d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

osgtest/tests/test_06_fetch_crl.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ class TestFetchCrl(osgunittest.OSGTestCase):
2929
]
3030

3131
def output_is_acceptable(self, fetch_crl_output):
32+
"""All lines output from fetch-crl are considered an error. We whitelist
33+
a few transient ones.
34+
"""
3235
all_lines_ok = True
3336
for line in fetch_crl_output.rstrip('\n').split('\n'):
3437
if not line: # skip blank lines

0 commit comments

Comments
 (0)