From f87f74474156b5798d24bdce6defc4d2b839d32a Mon Sep 17 00:00:00 2001
From: Leo Balter <leonardo.balter@gmail.com>
Date: Mon, 18 Jun 2018 21:09:55 -0400
Subject: [PATCH] Avoid printing tests source in the lint script (#1602)

---
 tools/lint/lib/checks/harness.py | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tools/lint/lib/checks/harness.py b/tools/lint/lib/checks/harness.py
index 7876fadafd..9c77013ab4 100644
--- a/tools/lint/lib/checks/harness.py
+++ b/tools/lint/lib/checks/harness.py
@@ -7,7 +7,6 @@ class CheckHarness(Check):
     ID = 'HARNESS'
 
     def run(self, name, meta, source):
-        print(source)
         if 'verifyConfigurable(' in source and 'verifyProperty(' in source:
             return 'verifyConfigurable & verifyProperty may not be used in the same file'
         else:
-- 
GitLab