summaryrefslogtreecommitdiff
path: root/setuptools/tests/test_easy_install.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r--setuptools/tests/test_easy_install.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index f2655d75..e02798c6 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -122,19 +122,19 @@ class TestEasyInstallTest(unittest.TestCase):
class TestPTHFileWriter(unittest.TestCase):
def test_add_from_cwd_site_sets_dirty(self):
- '''a pth file manager should set dirty
+ '''a pth file manager should set dirty
if a distribution is in site but also the cwd
'''
pth = PthDistributions('does-not_exist', [os.getcwd()])
- self.assertFalse(pth.dirty)
+ self.assert_(not pth.dirty)
pth.add(PRDistribution(os.getcwd()))
- self.assertTrue(pth.dirty)
+ self.assert_(pth.dirty)
def test_add_from_site_is_ignored(self):
pth = PthDistributions('does-not_exist', ['/test/location/does-not-have-to-exist'])
- self.assertFalse(pth.dirty)
+ self.assert_(not pth.dirty)
pth.add(PRDistribution('/test/location/does-not-have-to-exist'))
- self.assertFalse(pth.dirty)
+ self.assert_(not pth.dirty)
class TestUserInstallTest(unittest.TestCase):