We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c19ce87 commit a653813Copy full SHA for a653813
tests/testapp/test_aggregates.py
@@ -110,7 +110,7 @@ def test_application_order(self):
110
out = Author.objects.exclude(id=self.shakes.id).aggregate(
111
tids=GroupConcat("tutor_id", distinct=True)
112
)
113
- assert out == {"tids": set(map(str,self.shakes.id))}
+ assert out == {"tids": set(map(str,[self.shakes.id]))}
114
115
@override_mysql_variables(SQL_MODE="ANSI")
116
def test_separator_ansi_mode(self):
0 commit comments