diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-01-29 09:35:22 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-29 09:35:22 -0500 |
commit | 798cc4a78a51677a50be0faa1a530197ada435a2 (patch) | |
tree | 7e8e18070115a3b8d447211ee2cedf37b944a9b5 /googlemock/test/gmock_test_utils.py | |
parent | 718fd88d8f145c63b8cc134cf8fed92743cc112f (diff) | |
parent | 6c0c389601fc823f2e4c1ae27b39cb13d5d0a7d4 (diff) | |
download | googletest-798cc4a78a51677a50be0faa1a530197ada435a2.tar.gz googletest-798cc4a78a51677a50be0faa1a530197ada435a2.tar.bz2 googletest-798cc4a78a51677a50be0faa1a530197ada435a2.zip |
Merge pull request #1430 from gennadiycivil/master
Adding tests to googlemock bazel
Diffstat (limited to 'googlemock/test/gmock_test_utils.py')
-rwxr-xr-x | googlemock/test/gmock_test_utils.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/googlemock/test/gmock_test_utils.py b/googlemock/test/gmock_test_utils.py index 20e3d3d4..1983c53b 100755 --- a/googlemock/test/gmock_test_utils.py +++ b/googlemock/test/gmock_test_utils.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python -# # Copyright 2006, Google Inc. # All rights reserved. # @@ -41,11 +39,11 @@ import sys SCRIPT_DIR = os.path.dirname(__file__) or '.' # isdir resolves symbolic links. -gtest_tests_util_dir = os.path.join(SCRIPT_DIR, '../gtest/test') +gtest_tests_util_dir = os.path.join(SCRIPT_DIR, '../googletest/test') if os.path.isdir(gtest_tests_util_dir): GTEST_TESTS_UTIL_DIR = gtest_tests_util_dir else: - GTEST_TESTS_UTIL_DIR = os.path.join(SCRIPT_DIR, '../../gtest/test') + GTEST_TESTS_UTIL_DIR = os.path.join(SCRIPT_DIR, '../../googletest/test') sys.path.append(GTEST_TESTS_UTIL_DIR) import gtest_test_utils # pylint: disable-msg=C6204 |