Index: build/android/gyp/util/md5_check_test.py |
diff --git a/build/android/gyp/util/md5_check_test.py b/build/android/gyp/util/md5_check_test.py |
index 4a3ee6346bb72e5b4a4a31d0fd078b612b6b1f1a..4f89fc2be83267733c4bd979a65f4243b057156a 100644 |
--- a/build/android/gyp/util/md5_check_test.py |
+++ b/build/android/gyp/util/md5_check_test.py |
@@ -5,10 +5,13 @@ |
import tempfile |
import unittest |
-import md5_check |
+import md5_check # pylint: disable=W0403 |
class TestMd5Check(unittest.TestCase): |
+ def setUp(self): |
+ self.called = False |
+ |
def testCallAndRecordIfStale(self): |
input_strings = ['string1', 'string2'] |
input_file1 = tempfile.NamedTemporaryFile() |