Skip to content

Commit

Permalink
Fix format of trailing commas.
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinT committed Sep 8, 2023
1 parent dc82a46 commit 648970f
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions syntheseus/tests/search/graph/test_standardization.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,13 @@
from syntheseus.search.graph.standardization import get_unique_node_andor_graph


def test_smoke_andor(
andor_graph_non_minimal: AndOrGraph,
):
def test_smoke_andor(andor_graph_non_minimal: AndOrGraph):
with pytest.warns(UserWarning):
output = get_unique_node_andor_graph(andor_graph_non_minimal)

assert len(output) == len(andor_graph_non_minimal) # no nodes deleted here


def test_smoke_molset(
molset_tree_non_minimal: MolSetGraph,
):
def test_smoke_molset(molset_tree_non_minimal: MolSetGraph):
with pytest.warns(UserWarning):
get_unique_node_andor_graph(molset_tree_non_minimal)

0 comments on commit 648970f

Please sign in to comment.