mirror of https://github.com/tc39/test262.git
Update test/language/statements/try/completion-values-fn-finally-abrupt.js
Co-authored-by: Kevin Gibbons <bakkot@gmail.com>
This commit is contained in:
parent
536ecd08a9
commit
55652110f7
|
@ -36,7 +36,7 @@ fn = function() {
|
|||
|
||||
assert.throws(Test262Error, fn, '1: try Abrupt, catch Abrupt, finally Abrupt; Completion: finally');
|
||||
assert.sameValue(count.catch, 1, '1: catch count');
|
||||
assert.sameValue(count.finally, 1, '1: fiinally count');
|
||||
assert.sameValue(count.finally, 1, '1: finally count');
|
||||
|
||||
// 2: try Abrupt, catch Return, finally Abrupt; Completion: finally
|
||||
count.catch = 0;
|
||||
|
|
Loading…
Reference in New Issue