From 44770fd1209593596933fc979c643bee0b7eabbd Mon Sep 17 00:00:00 2001 From: Muhammad Farhan Khan Date: Sat, 7 Sep 2024 13:55:29 +0500 Subject: [PATCH] fix: fix --- xmodule/tests/test_util_builtin_assets.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmodule/tests/test_util_builtin_assets.py b/xmodule/tests/test_util_builtin_assets.py index d6e0fe77d82b..cce87b194da4 100644 --- a/xmodule/tests/test_util_builtin_assets.py +++ b/xmodule/tests/test_util_builtin_assets.py @@ -52,7 +52,7 @@ def test_happy_path(self): builtin_assets.add_css_to_fragment(fragment, "ProblemBlockDisplay.css") assert fragment.resources[0] == FragmentResource( kind='url', - data=f"{settings.REPO_ROOT}/xmodule/assets/ProblemBlockDisplay.css", + data=f'{settings.REPO_ROOT}/xmodule/assets/ProblemBlockDisplay.css', mimetype='text/css', placement='head', )