Skip to content
Snippets Groups Projects
Unverified Commit f87f7447 authored by Leo Balter's avatar Leo Balter Committed by GitHub
Browse files

Avoid printing tests source in the lint script (#1602)

parent e89e9a8a
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,6 @@ class CheckHarness(Check): ...@@ -7,7 +7,6 @@ class CheckHarness(Check):
ID = 'HARNESS' ID = 'HARNESS'
def run(self, name, meta, source): def run(self, name, meta, source):
print(source)
if 'verifyConfigurable(' in source and 'verifyProperty(' in source: if 'verifyConfigurable(' in source and 'verifyProperty(' in source:
return 'verifyConfigurable & verifyProperty may not be used in the same file' return 'verifyConfigurable & verifyProperty may not be used in the same file'
else: else:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment