Skip to content
Snippets Groups Projects
Commit 24fc0934 authored by Nick Draper's avatar Nick Draper
Browse files

resolve python test failure

re #23102
parent b47a70ba
No related merge requests found
......@@ -163,7 +163,7 @@ void export_ConfigService() {
"filename")
.def("setLogLevel", &ConfigServiceImpl::setLogLevel,
(arg("self"), arg("logLevel")),
(arg("self"), arg("logLevel"), arg("quiet")),
"Sets the log level priority for all the log channels, logLevel "
"1 = Fatal, 6 = information, 7 = Debug")
......
......@@ -94,7 +94,7 @@ class ConfigServiceTest(unittest.TestCase):
self._clean_up_test_areas()
def test_setting_log_channel_levels(self):
testhelpers.assertRaisesNothing(self, config.setLogLevel, 4)
testhelpers.assertRaisesNothing(self, config.setLogLevel, 4, True)
def _setup_test_areas(self):
"""Create a new data search path string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment