diff options
Diffstat (limited to 'setuptools/tests/test_develop.py')
-rw-r--r-- | setuptools/tests/test_develop.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index fcf33c58..3e071dad 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -86,15 +86,15 @@ class TestDevelopTest(unittest.TestCase): # let's see if we got our egg link at the right place content = os.listdir(site.USER_SITE) content.sort() - self.assertEquals(content, ['easy-install.pth', 'foo.egg-link']) + self.assertEqual(content, ['easy-install.pth', 'foo.egg-link']) # Check that we are using the right code. path = open(os.path.join(site.USER_SITE, 'foo.egg-link'), 'rt').read().split()[0].strip() init = open(os.path.join(path, 'foo', '__init__.py'), 'rt').read().strip() if sys.version < "3": - self.assertEquals(init, 'print "foo"') + self.assertEqual(init, 'print "foo"') else: - self.assertEquals(init, 'print("foo")') + self.assertEqual(init, 'print("foo")') def notest_develop_with_setup_requires(self): |