test: fix a wronged test script (#2934)

This commit is contained in:
discord9
2023-12-14 22:27:36 +08:00
committed by GitHub
parent 5dba373ede
commit e35a494a3f

View File

@@ -613,7 +613,7 @@ def answer() -> vector[i64]:
except ImportError:
# Python didn't have pyarrow
print("Warning: no pyarrow in current python")
return vector([42, 43, 44])
return vector([42])
a = vector.from_pyarrow(pa.array([42]))
return a[0:1]
"#