Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
eriknw committed Dec 9, 2024
1 parent 93954ed commit 091d50a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions nx_cugraph/tests/test_generators.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,8 @@ def compare(name, create_using, *args, is_vanilla=False):
Gcg = func(*args, create_using=create_using, backend="cugraph")
except ZeroDivisionError:
raise
except NotImplementedError as exc:
if name in {"complete_multipartite_graph"}: # nx.__version__[:3] <= "3.2"
return
exc2 = exc
except NotImplementedError:
return
except Exception as exc:
if exc1 is None: # pragma: no cover (debug)
raise
Expand Down

0 comments on commit 091d50a

Please sign in to comment.