diff --git a/tools/lint/lib/checks/harness.py b/tools/lint/lib/checks/harness.py
index 7876fadafd4607d150622f7953e9508daa1e940a..9c77013ab4e43ff38954d3c0ebfc0237dd295625 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: