File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# pylint: disable=cannot-enumerate-pytest-fixtures
2
2
import pytest
3
3
4
- from src .core import configurator
5
- from src .jbi import configuration
4
+ from src .core import configurator as test_configurator
5
+ from src .jbi import configuration as jbi_configuration
6
6
7
7
8
8
def test_mock_jbi_files ():
9
9
with pytest .raises (AssertionError ):
10
- configurator .process_all_files_in_path (
11
- process = configuration .jbi_config_process ,
10
+ test_configurator .process_all_files_in_path (
11
+ process = jbi_configuration .jbi_config_process ,
12
12
folder_path = "tests/unit/jbi/mock_jbi_files" ,
13
13
)
14
14
15
15
16
16
def test_actual_jbi_files ():
17
- jbi_map = configuration .jbi_config_map ()
17
+ jbi_map = jbi_configuration .jbi_config_map ()
18
18
assert jbi_map
You can’t perform that action at this time.
0 commit comments