Skip to content

Commit d026cd9

Browse files
committed
Fix test background validation
1 parent 142d227 commit d026cd9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/unit/library/test_long_callback_validation.py renamed to tests/unit/library/test_background_callback_validation.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
55
from dash._validate import validate_background_callbacks
66

77

8-
def test_circular_long_callback_progress():
8+
def test_circular_background_callback_progress():
99
callback_map = {
1010
"side": {
1111
"output": [Output("side-progress", "children")],
1212
"raw_inputs": [Input("progress", "children")],
1313
},
14-
"long": {
14+
"background": {
1515
"output": [Output("result", "children")],
1616
"raw_inputs": [
1717
Input("click", "n_clicks"),
1818
Input("side-progress", "children"),
1919
],
20-
"long": {"progress": [Output("progress", "children")]},
20+
"background": {"progress": [Output("progress", "children")]},
2121
},
2222
}
2323

0 commit comments

Comments
 (0)