[pypy-commit] pypy default: #1180 - fix typo in test name

kostialopuhin noreply at buildbot.pypy.org
Wed Jun 20 23:55:52 CEST 2012


Author: Konstantin Lopuhin <kostia.lopuhin at gmail.com>
Branch: 
Changeset: r55740:0cee27959d9e
Date: 2012-06-19 23:11 +0400
http://bitbucket.org/pypy/pypy/changeset/0cee27959d9e/

Log:	#1180 - fix typo in test name

diff --git a/pypy/objspace/std/test/test_newformat.py b/pypy/objspace/std/test/test_newformat.py
--- a/pypy/objspace/std/test/test_newformat.py
+++ b/pypy/objspace/std/test/test_newformat.py
@@ -219,7 +219,7 @@
         assert "{0} or {1}".format(True, False) == "True or False"
         assert "{} or {}".format(True, False) == "True or False"
 
-    def test_int_deletaion_format(self):
+    def test_int_delegation_format(self):
         assert "{:f}".format(True) == "1.000000"
         assert "{:05d}".format(False) == "00000"
         assert "{:g}".format(True) == "1"


More information about the pypy-commit mailing list