From 96fa06b1014d575dd20fa40bab771044a3d9bf8f Mon Sep 17 00:00:00 2001 From: Aditya Singh Date: Sat, 14 Mar 2026 14:43:18 +0530 Subject: [PATCH] fix(curriculum): make test consistent with lowercase storage (#66420) --- .../684aaf9ec670c68d20efd0d0.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" }