Skip to content

Commit ec2571b

Browse files
committed
fix broken browser.test_emscripten_api_infloop [ci skip]
1 parent a9864a0 commit ec2571b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/emscripten_api_browser_infloop.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ struct Class {
2727
instance = this;
2828

2929
EM_ASM({
30-
var initial = Runtime.stackSave();
30+
var initial = stackSave();
3131
Module.print('seeing initial stack of ' + initial);
3232
setTimeout(function() {
33-
var current = Runtime.stackSave();
33+
var current = stackSave();
3434
Module.print('seeing later stack of ' + current);
3535
assert(current === initial);
3636
}, 0);

0 commit comments

Comments
 (0)