Skip to content
Snippets Groups Projects
Commit 3ec8001a authored by Kenny Sharma's avatar Kenny Sharma
Browse files

[NRRPLT-5330] Reflect BIBI/ExDConf schema cleanup in Experiments.

Change-Id: Ice875bc5a3c36960370a83ac2d5713d167345b53
parent 5569b938
No related branches found
No related tags found
No related merge requests found
......@@ -56,10 +56,10 @@ class TestMusicConfiguration(unittest.TestCase):
# brain populations set to none or empty
empty_bibi = api.BIBIConfiguration()
empty_bibi.brainModel = api.BrainModel(file=api.Python_Filename("foo.py"),
empty_bibi.brainModel = api.BrainModel(file=api.PythonFilename("foo.py"),
populations=None)
self.assertRaises(Exception, MUSICConfiguration, empty_bibi)
empty_bibi.brainModel = api.BrainModel(file=api.Python_Filename("foo.py"),
empty_bibi.brainModel = api.BrainModel(file=api.PythonFilename("foo.py"),
populations=[])
self.assertRaises(Exception, MUSICConfiguration, empty_bibi)
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment