Skip to content

Commit 42f7767

Browse files
committed
wip
1 parent f473768 commit 42f7767

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

tests/integration_tests/plugin_tests/test_property_statistics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def test_property_statistics(dash_duo, app, shared_settings) -> None:
1414
app.layout = plugin.layout
1515
dash_duo.start_server(app)
1616
logs = []
17-
for log in (dash_duo.get_logs() or []):
17+
for log in dash_duo.get_logs() or []:
1818
if "dash_renderer" in log.get("message"):
1919
warnings.warn(log.get("message"))
2020
else:

tests/integration_tests/plugin_tests/test_reservoir_simulation_timeseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def test_reservoir_simulation_timeseries(
2222
dash_duo.start_server(app)
2323

2424
logs = []
25-
for log in (dash_duo.get_logs() or []):
25+
for log in dash_duo.get_logs() or []:
2626
if "dash_renderer" in log.get("message"):
2727
warnings.warn(log.get("message"))
2828
else:

tests/integration_tests/plugin_tests/test_volumetric_analysis.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def test_volumetrics_no_sens(dash_duo, app, shared_settings) -> None:
1313
app.layout = plugin.layout
1414
dash_duo.start_server(app)
1515
logs = []
16-
for log in (dash_duo.get_logs() or []):
16+
for log in dash_duo.get_logs() or []:
1717
if "dash_renderer" in log.get("message"):
1818
warnings.warn(log.get("message"))
1919
else:
@@ -30,7 +30,7 @@ def test_volumetrics_sens(dash_duo, app, shared_settings) -> None:
3030
app.layout = plugin.layout
3131
dash_duo.start_server(app)
3232
logs = []
33-
for log in (dash_duo.get_logs() or []):
33+
for log in dash_duo.get_logs() or []:
3434
if "dash_renderer" in log.get("message"):
3535
warnings.warn(log.get("message"))
3636
else:

0 commit comments

Comments
 (0)