[pypy-commit] lang-js default: fixed typo.

andrewsmedina noreply at buildbot.pypy.org
Wed May 22 11:30:50 CEST 2013


Author: Andrews Medina <andrewsmedina at gmail.com>
Branch: 
Changeset: r389:ea1db4caae17
Date: 2013-05-18 15:19 -0300
http://bitbucket.org/pypy/lang-js/changeset/ea1db4caae17/

Log:	fixed typo.

diff --git a/test/test_array.py b/test/test_array.py
--- a/test/test_array.py
+++ b/test/test_array.py
@@ -1,7 +1,7 @@
 from test.test_interp import assertv, assertp
 
 
-def test_arrya_last_index_of(capsys):
+def test_array_last_index_of(capsys):
     assertp("var a = [2, 5, 9, 2]; print(a.lastIndexOf(2));", "3", capsys)
     assertp("var a = [2, 5, 9, 2]; print(a.lastIndexOf(7));", "-1", capsys)
     assertp("var a = [2, 5, 9, 2]; print(a.lastIndexOf(2, 3));", "3", capsys)


More information about the pypy-commit mailing list