Skip to content

Commit bec283f

Browse files
committed
BindingTest.html - Fix formatting
Braces on new lines Remove blank line
1 parent 05743ff commit bec283f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CefSharp.Example/Resources/BindingTest.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,8 @@
370370
Promise.all([
371371
boundAsync.methodReturnsList(),
372372
boundAsync.methodReturnsListOfLists(),
373-
]).then(function (results) {
373+
]).then(function (results)
374+
{
374375
assert.ok(deepEqual(results[0], list1), "Call to bound.MethodReturnsList() resulted in : " + JSON.stringify(results[0]));
375376
assert.ok(deepEqual(results[1], list2), "Call to bound.MethodReturnsListOfLists() resulted in : " + JSON.stringify(results[1]));
376377
asyncCallback();
@@ -415,7 +416,6 @@
415416
assert.ok( deepEqual(results[2], dict3), "Call to bound.MethodReturnsDictionary3() resulted in : " + JSON.stringify(results[2]) );
416417
asyncCallback();
417418
});
418-
419419
});
420420

421421
QUnit.test("Javascript Callback Test using object as parameter", function( assert )

0 commit comments

Comments
 (0)