Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Nov 9, 2023
1 parent 54ed169 commit b52cbd0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_js_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -1487,7 +1487,10 @@ def test_get_edge_terminals_error_not_an_edge(graph_cases, selenium_extras) -> N
with pytest.raises(WebDriverException) as e:
graph.eval_js_function('api.getEdgeTerminals', graph.get_id(vertex))

assert f"Cell with id {graph.get_id(vertex)} is not an edge" in selenium_extras.get_exception_message(e)
assert (
f"Cell with id {graph.get_id(vertex)} is not an edge"
in selenium_extras.get_exception_message(e)
)


def test_custom_font_family(graph_cases_factory, port) -> None:
Expand Down

0 comments on commit b52cbd0

Please sign in to comment.