fixed name of simple destructuring test.

This commit is contained in:
Adam Freidin
2011-05-08 15:00:27 -07:00
parent 1809c0e675
commit dc499089e9

View File

@@ -320,7 +320,7 @@ test "#904: Destructuring function arguments with same-named variables in scope"
eq nonce, a
eq nonce, b
test "Simple Destructuring Failure", ->
test "Simple Destructuring function arguments with same-named variables in scope", ->
x = 1
f = ([x]) -> x
eq f([2]), 2