Skip to content

Commit

Permalink
NeuronConnector: update dir name in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Oct 23, 2023
1 parent 149a95b commit 314dd8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def treeneuron_dfs(swc_paths, synapses_paths):
@pytest.fixture
def neuron_connections(fixture_dir: Path):
expected_jso = json.loads(
fixture_dir.joinpath("network_connector", "expected.json").read_text()
fixture_dir.joinpath("neuron_connector", "expected.json").read_text()
)
expected = {
int(pre): {
Expand All @@ -135,7 +135,7 @@ def neuron_connections(fixture_dir: Path):
}

nl = navis.read_json(
str(fixture_dir.joinpath("network_connector", "network.json"))
str(fixture_dir.joinpath("neuron_connector", "network.json"))
)
nrns = []
for nrn in nl:
Expand Down

0 comments on commit 314dd8c

Please sign in to comment.