Skip to content

Commit

Permalink
Use full library name in Python test
Browse files Browse the repository at this point in the history
  • Loading branch information
toadharvard committed Oct 29, 2023
1 parent cdd2620 commit 6fe81ff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/python_bindings/test_bindings.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from inspect import getmembers, isclass

import desbordante as desb
import desbordante

for algorithm_name, type_ in getmembers(desb, isclass):
if not (issubclass(type_, desb.FdAlgorithm)
and type_ is not desb.FdAlgorithm):
for algorithm_name, type_ in getmembers(desbordante, isclass):
if not (issubclass(type_, desbordante.FdAlgorithm)
and type_ is not desbordante.FdAlgorithm):
continue
algorithm = type_()
for option_name in algorithm.get_possible_options():
Expand Down

0 comments on commit 6fe81ff

Please sign in to comment.