mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix lint, remove debug statement
This commit is contained in:
parent
37029c1a16
commit
201ceae4c4
1 changed files with 1 additions and 3 deletions
|
@ -39,7 +39,7 @@ class DocTestCase(TestCase):
|
|||
# No grep in Windows, use findstr
|
||||
# findstr in windows doesn't prepend 'Binary` to binary files, so
|
||||
# use the '/P' switch to skip files with unprintable characters
|
||||
cmd = 'findstr /C:":doc:" /S /P {0}\*'.format(salt_dir)
|
||||
cmd = 'findstr /C:":doc:" /S /P {0}\\*'.format(salt_dir)
|
||||
else:
|
||||
salt_dir += '/'
|
||||
cmd = 'grep -r :doc: ' + salt_dir
|
||||
|
@ -77,8 +77,6 @@ class DocTestCase(TestCase):
|
|||
else:
|
||||
test_ret[key].append(val.strip())
|
||||
|
||||
print('*' * 68)
|
||||
|
||||
# Allow test results to show files with :doc: ref, rather than truncating
|
||||
self.maxDiff = None
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue