From f702f1853c3c21f71faea0973795f7999af23c28 Mon Sep 17 00:00:00 2001 From: Julius Neuffer Date: Thu, 26 Apr 2018 14:12:10 +0200 Subject: [PATCH] ARROW-2503: [Python] Fix string statistics test This accounts for the fixed behavior of FormatStatValue as described in PARQUET-1283. --- python/pyarrow/tests/test_parquet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/pyarrow/tests/test_parquet.py b/python/pyarrow/tests/test_parquet.py index 86cf417d989..9e4d3d260c2 100644 --- a/python/pyarrow/tests/test_parquet.py +++ b/python/pyarrow/tests/test_parquet.py @@ -587,7 +587,7 @@ def test_parquet_metadata_api(): ([-1.1, 2.2, 2.3, None, 4.4], np.float64, -1.1, 4.4, 1, 4), ( [u'', u'b', unichar(1000), None, u'aaa'], - str, b' ', (unichar(1000) + u' ').encode('utf-8'), 1, 4 + str, b'', unichar(1000).encode('utf-8'), 1, 4 ), ([True, False, False, True, True], np.bool, False, True, 0, 5), ]