Skip to content

Commit

Permalink
fix pytest fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
schlegelp committed May 2, 2023
1 parent 1cdafd5 commit d7791fd
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 @@ -33,7 +33,7 @@ def swc_source(request, swc_paths: List[Path]):
with open(swc_path, "rb") as f:
yield f
elif request.param == "DataFrame":
df = pd.read_csv(swc_path, " ", header=None, comment="#")
df = pd.read_csv(swc_path, sep=" ", header=None, comment="#")
df.columns = navis.io.swc_io.NODE_COLUMNS
yield df
else:
Expand Down

0 comments on commit d7791fd

Please sign in to comment.