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 b98e688 commit 764cf2aCopy full SHA for 764cf2a
pandas/tests/series/test_apply.py
@@ -317,9 +317,9 @@ def test_non_callable_aggregates(self):
317
318
# test when mixed w/ callable reducers
319
result = s.agg(['size', 'count', 'mean'])
320
- expected = Series(OrderedDict({'size': 3.0,
321
- 'count': 2.0,
322
- 'mean': 1.5}))
+ expected = Series(OrderedDict([('size', 3.0),
+ ('count', 2.0),
+ ('mean', 1.5)]))
323
assert_series_equal(result[expected.index], expected)
324
325
0 commit comments