We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11850aa commit 58e3853Copy full SHA for 58e3853
packages/npm-packages/ruby-wasm-wasi/test/unit/test_object.rb
@@ -383,14 +383,14 @@ def test_send_method_for_javascript_object_with_send_method
383
object = JS.eval(<<~JS)
384
return { send(message) { return message; } };
385
JS
386
- assert_equal "hello", object.send('hello').to_s
+ assert_equal "hello", object.send("hello").to_s
387
end
388
389
def test_send_method_for_javascript_object_without_send_method
390
391
return { write(message) { return message; } };
392
393
- assert_raise(NoMethodError) { object.send('hello') }
+ assert_raise(NoMethodError) { object.send("hello") }
394
395
396
def test_member_get
0 commit comments