summaryrefslogtreecommitdiff
path: root/tests/test_bdist_dumb.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-11-20 19:04:17 +0000
committerEzio Melotti <ezio.melotti@gmail.com>2010-11-20 19:04:17 +0000
commitdf79f96e47490dedbcb676f77c426fad14df1c6f (patch)
tree8197c5c83bb18fbf4efc1dddeed1cc44ddc7647b /tests/test_bdist_dumb.py
parentbbcb611025969e9a4b8a987a7ce1528776740ae2 (diff)
downloadpython-setuptools-git-df79f96e47490dedbcb676f77c426fad14df1c6f.tar.gz
#9424: Replace deprecated assert* methods in the Python test suite.
Diffstat (limited to 'tests/test_bdist_dumb.py')
-rw-r--r--tests/test_bdist_dumb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_bdist_dumb.py b/tests/test_bdist_dumb.py
index 7d9d0aa8..cc37fef8 100644
--- a/tests/test_bdist_dumb.py
+++ b/tests/test_bdist_dumb.py
@@ -69,7 +69,7 @@ class BuildDumbTestCase(support.TempdirManager,
base = base.replace(':', '-')
wanted = ['%s.zip' % base]
- self.assertEquals(dist_created, wanted)
+ self.assertEqual(dist_created, wanted)
# now let's check what we have in the zip file
# XXX to be done