aboutsummaryrefslogtreecommitdiffstats
path: root/test/run_tests_test.py
diff options
context:
space:
mode:
authorzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-06-11 00:51:14 +0000
committerzhanyong.wan <zhanyong.wan@861a406c-534a-0410-8894-cb66d6ee9925>2009-06-11 00:51:14 +0000
commitb24b49d85a741f254cbe42da36e0cb93f0b0b57f (patch)
tree1061cdb6c54c0c173b992ada74901763b58aa076 /test/run_tests_test.py
parente68adf5c9089b4e2b7d527eb398471a7728b2939 (diff)
downloadgoogletest-b24b49d85a741f254cbe42da36e0cb93f0b0b57f.tar.gz
googletest-b24b49d85a741f254cbe42da36e0cb93f0b0b57f.tar.bz2
googletest-b24b49d85a741f254cbe42da36e0cb93f0b0b57f.zip
Fixes a typo in run_tests.py and its test (by Vlad Losev).
Diffstat (limited to 'test/run_tests_test.py')
-rwxr-xr-xtest/run_tests_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/run_tests_test.py b/test/run_tests_test.py
index 75b7d9d2..1d9f3b77 100755
--- a/test/run_tests_test.py
+++ b/test/run_tests_test.py
@@ -124,7 +124,7 @@ class FakeOs(object):
assert self.path.isdir(path)
return self.path.PathElement(path).iterkeys()
- def spawn(self, wait, executable, *kargs):
+ def spawnv(self, wait, executable, *kargs):
assert wait == FakeOs.P_WAIT
return self.spawn_impl(executable, kargs)