Skip to content

Commit

Permalink
fix: fix fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
jnsbck committed Nov 21, 2024
1 parent c53c6f0 commit beb7a7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def get_or_compute_swc2jaxley_params(
default_fname = os.path.join(dirname, "swc_files", "morph.swc")
fname = default_fname if fname is None else fname
if key := (fname, max_branch_len, sort) not in params or force_init:
params[key] = jx.utils.swc.swc_to_jaxley(fname, max_branch_len, sort)
params[key] = jx.io.swc.swc_to_jaxley(fname, max_branch_len, sort)
return params[key]

yield get_or_compute_swc2jaxley_params
Expand Down

0 comments on commit beb7a7b

Please sign in to comment.