summaryrefslogtreecommitdiff
path: root/tests/test_build_py.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-08-13 08:51:18 +0000
committerGeorg Brandl <georg@python.org>2009-08-13 08:51:18 +0000
commit8c7f12ea567dc59e1031dbffdda12247dfce0b9e (patch)
tree540c4dfc8db2994fc06d77a141d4f08075a7acc0 /tests/test_build_py.py
parent576fc43ebe6bd3b6f7707d8c8e9ba92cc9ed112b (diff)
downloadpython-setuptools-git-8c7f12ea567dc59e1031dbffdda12247dfce0b9e.tar.gz
Merged revisions 73715 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line convert old fail* assertions to assert* ........
Diffstat (limited to 'tests/test_build_py.py')
-rw-r--r--tests/test_build_py.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_build_py.py b/tests/test_build_py.py
index 75b6624f..8ad3bbc4 100644
--- a/tests/test_build_py.py
+++ b/tests/test_build_py.py
@@ -52,9 +52,9 @@ class BuildPyTestCase(support.TempdirManager,
self.assertEqual(len(cmd.get_outputs()), 3)
pkgdest = os.path.join(destination, "pkg")
files = os.listdir(pkgdest)
- self.assert_("__init__.py" in files)
- self.assert_("__init__.pyc" in files)
- self.assert_("README.txt" in files)
+ self.assertTrue("__init__.py" in files)
+ self.assertTrue("__init__.pyc" in files)
+ self.assertTrue("README.txt" in files)
def test_empty_package_dir (self):
# See SF 1668596/1720897.