Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
selmanozleyen committed Oct 23, 2024
1 parent 7e472dc commit 19d7f35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/problems/generic/test_fgw_problem.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def test_pass_arguments(self, adata_space_rotate: AnnData, args_to_check: Mappin
args = gw_solver_args if args_to_check["rank"] == -1 else gw_lr_solver_args
for arg, val in args.items():
if args_to_check["rank"] == -1 and arg == "initializer":
assert isinstance(getattr(solver,val), Callable)
assert isinstance(getattr(solver, val), Callable)
else:
assert getattr(solver, val, object()) == args_to_check[arg], arg

Expand Down

0 comments on commit 19d7f35

Please sign in to comment.