Skip to content

Commit 475fa3f

Browse files
committed
Fix test case
Change-Id: I2c5c3ecacc50b6faa63e5241119cf0b6914ae864
1 parent fad3934 commit 475fa3f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/src/arrow/util/stl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
#include <vector>
2222

23-
#include <arrow/util/logging.h>
23+
#include "arrow/util/logging.h"
2424

2525
namespace arrow {
2626

python/pyarrow/tests/test_parquet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ def test_date_time_types(tmpdir):
365365
data3 = np.array([start, start + 1, start + 2], dtype='int64')
366366
a3 = pa.Array.from_pandas(data3, type=t3)
367367

368-
t4 = pa.time32('s')
368+
t4 = pa.time32('ms')
369369
data4 = np.arange(3, dtype='i4')
370370
a4 = pa.Array.from_pandas(data4, type=t4)
371371

0 commit comments

Comments
 (0)