mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-03-14 01:09:51 -04:00
Fix tests
This commit is contained in:
parent
34dfbb50ba
commit
91c93830a8
2 changed files with 2 additions and 2 deletions
test/unit
|
@ -22,7 +22,7 @@ test('calling a custom block with no definition does not throw', t => {
|
|||
}
|
||||
};
|
||||
t.doesNotThrow(() => {
|
||||
blocks.callNoReturn(args, util);
|
||||
blocks.call(args, util);
|
||||
});
|
||||
t.end();
|
||||
});
|
||||
|
|
|
@ -139,7 +139,7 @@ test('goToNextBlock', t => {
|
|||
block: 'fakeBlock',
|
||||
name: 'STEPS',
|
||||
next: null,
|
||||
opcode: 'procedures_callnoreturn',
|
||||
opcode: 'procedures_call',
|
||||
mutation: {proccode: 'fakeCode'},
|
||||
parent: null,
|
||||
shadow: false,
|
||||
|
|
Loading…
Reference in a new issue