summaryrefslogtreecommitdiffstats
path: root/googlemock/test/gmock_test_utils.py
diff options
context:
space:
mode:
authorGennadiy Civil <misterg@google.com>2018-01-26 21:30:57 (GMT)
committerGennadiy Civil <misterg@google.com>2018-01-26 21:30:57 (GMT)
commit6c0c389601fc823f2e4c1ae27b39cb13d5d0a7d4 (patch)
tree7e8e18070115a3b8d447211ee2cedf37b944a9b5 /googlemock/test/gmock_test_utils.py
parent92c93802e13e84f4d916f45dd99417cdeb38841b (diff)
downloadgoogletest-6c0c389601fc823f2e4c1ae27b39cb13d5d0a7d4.zip
googletest-6c0c389601fc823f2e4c1ae27b39cb13d5d0a7d4.tar.gz
googletest-6c0c389601fc823f2e4c1ae27b39cb13d5d0a7d4.tar.bz2
Adding tests to googlemock bazelrefs/pull/1430/head
Diffstat (limited to 'googlemock/test/gmock_test_utils.py')
-rwxr-xr-xgooglemock/test/gmock_test_utils.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/googlemock/test/gmock_test_utils.py b/googlemock/test/gmock_test_utils.py
index 20e3d3d..1983c53 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