diff --git a/src/aiidalab_qe/app/configuration/__init__.py b/src/aiidalab_qe/app/configuration/__init__.py index f8885e616..8d73792b3 100644 --- a/src/aiidalab_qe/app/configuration/__init__.py +++ b/src/aiidalab_qe/app/configuration/__init__.py @@ -241,7 +241,7 @@ def _fetch_plugin_settings(self): def toggle_plugin(change, identifier=identifier, info=info): if change["new"]: info.value = ( - f"Customize {identifier} settings in step 2.2 if needed" + f"Customize {identifier} settings in Step 2.2 if needed" ) else: info.value = "" diff --git a/tests/test_configure.py b/tests/test_configure.py index 31a9821e3..509a039cd 100644 --- a/tests/test_configure.py +++ b/tests/test_configure.py @@ -71,6 +71,6 @@ def test_reminder_info(): assert bands_info.value == "" bands_model = model.get_model("bands") bands_model.include = True - assert bands_info.value == "Customize bands settings in step 2.2 if needed" + assert bands_info.value == "Customize bands settings in step 2.2 if needed" bands_model.include = False assert bands_info.value == ""