change test for spider monkey

This commit is contained in:
Eliot Horowitz 2009-05-08 17:17:58 -04:00
parent 981ff1a4ce
commit 124409ee03
1 changed files with 0 additions and 1 deletions

View File

@ -485,7 +485,6 @@ class DBAPITest < Test::Unit::TestCase
assert_equal 5, @@db.eval("2 + 3;")
assert_equal 5, @@db.eval(Code.new("2 + 3;"))
assert_equal nil, @@db.eval(Code.new("return i;"))
assert_equal 2, @@db.eval(Code.new("return i;", {"i" => 2}))
assert_equal 5, @@db.eval(Code.new("i + 3;", {"i" => 2}))