Skip to content

Commit

Permalink
test: refactor test_updates
Browse files Browse the repository at this point in the history
  • Loading branch information
filimarc committed Dec 2, 2024
1 parent a4c711e commit 538139f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -1626,7 +1626,7 @@ def test_updates(self):
cfg_dict = cfg.__tree__()
self.assertEqual(cfg_dict["morphologies"], ["dummy_neuron.swc"])
self.assertIn("brain_region", cfg_dict["regions"])
cfg.morphologies = []
cfg.morphologies.pop(0)
cfg.regions.pop("brain_region")
cfg_dict = cfg.__tree__()
self.assertEqual(cfg_dict["morphologies"], [])
Expand Down

0 comments on commit 538139f

Please sign in to comment.