diff options
author | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2009-12-01 19:42:25 +0000 |
---|---|---|
committer | zhanyong.wan <zhanyong.wan@8415998a-534a-0410-bf83-d39667b30386> | 2009-12-01 19:42:25 +0000 |
commit | f6d6a22b8eea931b49a8c33de3092d4623ed0d41 (patch) | |
tree | a0608d2270992b90160a57c68014fb65ade117df /test/gmock_leak_test.py | |
parent | 19eb9e9e3d4d5a4f0eee786d7664ca0e45137390 (diff) | |
download | googletest-f6d6a22b8eea931b49a8c33de3092d4623ed0d41.tar.gz googletest-f6d6a22b8eea931b49a8c33de3092d4623ed0d41.tar.bz2 googletest-f6d6a22b8eea931b49a8c33de3092d4623ed0d41.zip |
Fixes Cygwin compatibility (by Vlad Losev); Improves Python tests (by Vlad Losev); Fixes ambiguous call to implicit_cast; Uses gtest's SkipPrefix() instead gmock's own (by Vlad Losev).
Diffstat (limited to 'test/gmock_leak_test.py')
-rwxr-xr-x | test/gmock_leak_test.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/gmock_leak_test.py b/test/gmock_leak_test.py index 429cc6ad..38ff9d01 100755 --- a/test/gmock_leak_test.py +++ b/test/gmock_leak_test.py @@ -33,8 +33,6 @@ __author__ = 'wan@google.com (Zhanyong Wan)' -import os -import unittest import gmock_test_utils @@ -45,7 +43,7 @@ TEST_WITH_ON_CALL = [PROGRAM_PATH, '--gtest_filter=*OnCall*'] TEST_MULTIPLE_LEAKS = [PROGRAM_PATH, '--gtest_filter=*MultipleLeaked*'] -class GMockLeakTest(unittest.TestCase): +class GMockLeakTest(gmock_test_utils.TestCase): def testCatchesLeakedMockByDefault(self): self.assertNotEqual( |