diff options
author | Gennadiy Civil <misterg@google.com> | 2018-01-22 19:14:05 (GMT) |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-01-22 19:14:05 (GMT) |
commit | a0435a54ce837595426c213dfdc8e951201371ee (patch) | |
tree | 3f0e771b7b151096d04db723f86190b7b1bcd515 /googletest/test/gtest_test_utils.py | |
parent | 8d707dfe817df153efd6fe7832b6149244ed7665 (diff) | |
download | googletest-a0435a54ce837595426c213dfdc8e951201371ee.zip googletest-a0435a54ce837595426c213dfdc8e951201371ee.tar.gz googletest-a0435a54ce837595426c213dfdc8e951201371ee.tar.bz2 |
merging
Diffstat (limited to 'googletest/test/gtest_test_utils.py')
-rwxr-xr-x | googletest/test/gtest_test_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/test/gtest_test_utils.py b/googletest/test/gtest_test_utils.py index 89d1469..db06f2e 100755 --- a/googletest/test/gtest_test_utils.py +++ b/googletest/test/gtest_test_utils.py @@ -28,6 +28,8 @@ # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """Unit test utilities for Google C++ Testing Framework.""" +# Suppresses the 'Import not at the top of the file' lint complaint. +# pylint: disable-msg=C6204 __author__ = 'wan@google.com (Zhanyong Wan)' @@ -44,8 +46,6 @@ import tempfile import unittest _test_module = unittest -# Suppresses the 'Import not at the top of the file' lint complaint. -# pylint: disable-msg=C6204 try: import subprocess _SUBPROCESS_MODULE_AVAILABLE = True |