From 74980ab06d3b406827f9d741bc8248721f69e5a1 Mon Sep 17 00:00:00 2001 From: R1kaB3rN <100738684+R1kaB3rN@users.noreply.github.com> Date: Sun, 16 Jun 2024 20:02:18 -0700 Subject: [PATCH] umu_test: fix SyntaxError in f-string expression - It seems we can only use the same outer quotes within f-strings in Python 3.12. --- umu/umu_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umu/umu_test.py b/umu/umu_test.py index 681ffab62..b6bcb27e3 100644 --- a/umu/umu_test.py +++ b/umu/umu_test.py @@ -1407,7 +1407,7 @@ def test_build_command_nopv(self): ) proton, verb, exe, *_ = [*test_command] self.assertEqual( - proton, f"{self.env["PROTONPATH"]}/proton", "Expected PROTONPATH" + proton, f"{self.env['PROTONPATH']}/proton", "Expected PROTONPATH" ) self.assertEqual(verb, "waitforexitandrun", "Expected PROTON_VERB") self.assertEqual(exe, self.env["EXE"], "Expected EXE")