diff options
Diffstat (limited to 'tests/test_core_init.py')
| -rw-r--r-- | tests/test_core_init.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/test_core_init.py b/tests/test_core_init.py index e1f2dbb..30477ef 100644 --- a/tests/test_core_init.py +++ b/tests/test_core_init.py @@ -1,10 +1,9 @@ import os from avp.core import Core -from . import getTestDataPath, initCore +from . import getTestDataPath, settings -def test_component_names(): - initCore() +def test_component_names(settings): core = Core() assert core.compNames == [ "Classic Visualizer", @@ -19,8 +18,7 @@ def test_component_names(): ] -def test_moduleindex(): - initCore() +def test_moduleindex(settings): core = Core() assert core.moduleIndexFor("Classic Visualizer") == 0 |
