@@ -48,7 +48,7 @@ def check_errors(dash_duo, specs):
48
48
)
49
49
50
50
# ensure the errors didn't leave items in the pendingCallbacks queue
51
- assert dash_duo .driver .execute_script (' return document.title' ) == ' Dash'
51
+ assert dash_duo .driver .execute_script (" return document.title" ) == " Dash"
52
52
53
53
54
54
def test_dvcv001_blank (dash_duo ):
@@ -421,18 +421,19 @@ def h(a):
421
421
"A nonexistent object was used in an `Input` of a Dash callback. "
422
422
"The id of this object is `yeah-no` and the property is `value`. "
423
423
"The string ids in the current layout are: "
424
- "[main, outer-div, inner-div, inner-input, outer-input]" , []
424
+ "[main, outer-div, inner-div, inner-input, outer-input]" ,
425
+ [],
425
426
],
426
427
[
427
428
"A nonexistent object was used in an `Output` of a Dash callback. "
428
429
"The id of this object is `nope` and the property is `children`. "
429
430
"The string ids in the current layout are: "
430
- "[main, outer-div, inner-div, inner-input, outer-input]" , []
431
- ]
431
+ "[main, outer-div, inner-div, inner-input, outer-input]" ,
432
+ [],
433
+ ],
432
434
]
433
435
434
436
435
-
436
437
def test_dvcv008_wrong_callback_id (dash_duo ):
437
438
dash_duo .start_server (bad_id_app (), ** debugging )
438
439
0 commit comments