We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dda0d7 commit 71655eaCopy full SHA for 71655ea
test/initialize/application/test_config_reader.py
@@ -20,7 +20,7 @@ def test_should_read_existing_configuration_from_file(self) -> None:
20
config = ConfigurationSchemaMother.any()
21
22
expect_call(configuration_repository).read(config_file_path).returns(config.to_primitives())
23
- expect_call(configuration_parser).parse(config.to_primitives()).returns(config)
+ expect_call(configuration_parser).parse(config.to_primitives(), config_file_path).returns(config)
24
25
parsed_config = config_reader.execute(config_file_path)
26
0 commit comments