diff --git a/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md b/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md index 3aa89eb9d9f..4a90a75d9ac 100644 --- a/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md +++ b/curriculum/challenges/english/blocks/lab-user-configuration-manager/684aaf9ec670c68d20efd0d0.md @@ -389,9 +389,9 @@ The `view_settings` function should have one parameter. ```js ({ test: () => runPython(` - settings_in_test = {"theme": "light", "language": "English", "notifications": "enabled"} + settings_in_test = {"theme": "light", "language": "english", "notifications": "enabled"} result = view_settings(settings_in_test) - assert result == "Current User Settings:\\nTheme: light\\nLanguage: English\\nNotifications: enabled\\n" + assert result == "Current User Settings:\\nTheme: light\\nLanguage: english\\nNotifications: enabled\\n" `) }) @@ -447,7 +447,7 @@ def view_settings(settings): test_settings = { "theme": "light", - "language": "English", + "language": "english", "notifications": "enabled" }