From e4372f1b5c8877bd0ed792606eb97641ca913368 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Fri, 27 Feb 2026 13:36:16 -0500 Subject: Refs #35972 -- Returned params in a tuple in further expressions. --- tests/expressions/tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/expressions/tests.py b/tests/expressions/tests.py index cb62d0fbd7..5effc8ac0d 100644 --- a/tests/expressions/tests.py +++ b/tests/expressions/tests.py @@ -2504,9 +2504,9 @@ class ValueTests(TestCase): # This test might need to be revisited later on if #25425 is enforced. compiler = Time.objects.all().query.get_compiler(connection=connection) value = Value("foo") - self.assertEqual(value.as_sql(compiler, connection), ("%s", ["foo"])) + self.assertEqual(value.as_sql(compiler, connection), ("%s", ("foo",))) value = Value("foo", output_field=CharField()) - self.assertEqual(value.as_sql(compiler, connection), ("%s", ["foo"])) + self.assertEqual(value.as_sql(compiler, connection), ("%s", ("foo",))) def test_output_field_decimalfield(self): Time.objects.create() -- cgit v1.3