diff options
| author | Bert JW Regeer <bertjw@regeer.org> | 2020-05-28 16:34:40 -0700 |
|---|---|---|
| committer | Bert JW Regeer <bertjw@regeer.org> | 2020-05-28 16:34:40 -0700 |
| commit | 77c1505ab529759c86c2c168c415ed05a635cebb (patch) | |
| tree | 5e85c9f1d0361fcf7a5d3296832749e05012c1d1 /tests/test_path.py | |
| parent | 683bc742f7b08db563f3385796809c09babf004b (diff) | |
| download | pyramid-77c1505ab529759c86c2c168c415ed05a635cebb.tar.gz pyramid-77c1505ab529759c86c2c168c415ed05a635cebb.tar.bz2 pyramid-77c1505ab529759c86c2c168c415ed05a635cebb.zip | |
Revert "Fix tests that depend on the test runner"
This reverts commit 72eca2f8e82f1af20e433218719d99e7627d5650.
Diffstat (limited to 'tests/test_path.py')
| -rw-r--r-- | tests/test_path.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_path.py b/tests/test_path.py index c9cfde2b6..384460fb1 100644 --- a/tests/test_path.py +++ b/tests/test_path.py @@ -101,10 +101,10 @@ class TestCallerPackage(unittest.TestCase): self.assertEqual(result, tests) def test_it_level_3(self): - import _pytest + import unittest result = self._callFUT(3) - self.assertEqual(result, _pytest) + self.assertEqual(result, unittest) def test_it_package(self): import tests |
