From a47714668190f124dddf21871b169e77423db7e7 Mon Sep 17 00:00:00 2001 From: Artem Rys Date: Mon, 3 Jun 2024 21:40:07 +0200 Subject: [PATCH] test: fix unit tests after merge (#1223) **Issue number:** N/A ## Summary ### Changes > Please provide a summary of what's being changed Fixes unit test step after merge. ### User experience > Please describe what the user experience looks like before and after this change N/A ## Checklist If your change doesn't seem to apply, please leave them unchecked. * [x] I have performed a self-review of this change * [x] Changes have been tested * [ ] Changes are documented * [x] PR title follows [conventional commit semantics](https://www.conventionalcommits.org/en/v1.0.0/) --- tests/unit/test_global_config_validator.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/unit/test_global_config_validator.py b/tests/unit/test_global_config_validator.py index 9e1080653..bc9e7c200 100644 --- a/tests/unit/test_global_config_validator.py +++ b/tests/unit/test_global_config_validator.py @@ -306,14 +306,12 @@ def test_config_validation_when_deprecated_placeholder_is_used(caplog): ), ( "invalid_config_meta_default_inputs_page_but_no_inputs_defined.json", - False, ( 'meta.defaultView == "inputs" but there is no inputs defined in globalConfig' ), ), ( "invalid_config_meta_default_dashboard_page_but_no_dashboard_defined.json", - False, ( 'meta.defaultView == "dashboard" but there is no dashboard defined in globalConfig' ),