diff --git a/tests/postgres_tests/test_aggregates.py b/tests/postgres_tests/test_aggregates.py index 902135b18c..bb694dae63 100644 --- a/tests/postgres_tests/test_aggregates.py +++ b/tests/postgres_tests/test_aggregates.py @@ -98,7 +98,7 @@ class TestGeneralAggregate(PostgreSQLTestCase): StringAgg("char_field", delimiter=";"), ] if connection.features.has_bit_xor: - tests.append((BitXor("integer_field"), None)) + tests.append(BitXor("integer_field")) for aggregation in tests: with self.subTest(aggregation=aggregation): # Empty result with non-execution optimization.