We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f867f98 commit 0ed81ceCopy full SHA for 0ed81ce
1 file changed
tests/integration/devtools/test_devtools_error_handling.py
@@ -109,14 +109,14 @@ def test_dveh006_long_python_errors(dash_duo):
109
assert "in bad_sub" not in error0
110
# dash and flask part of the traceback ARE included
111
# since we set dev_tools_prune_errors=False
112
- assert "factory.py" in error0
+ assert "backend" in error0 and "flask.py" in error0
113
assert "self.wsgi_app" in error0
114
115
error1 = get_error_html(dash_duo, 1)
116
assert "in update_output" in error1
117
assert "in bad_sub" in error1
118
assert "ZeroDivisionError" in error1
119
- assert "factory.py" in error1
+ assert "backend" in error1 and "flask.py" in error1
120
assert "self.wsgi_app" in error1
121
122
0 commit comments