From 0bd7992f1df239a7e5e043d7a684be6f7994eb80 Mon Sep 17 00:00:00 2001 From: David Wood Date: Tue, 17 Sep 2024 16:45:11 -0400 Subject: [PATCH] noop test source Signed-off-by: David Wood --- .../python/test/data_processing_tests/transform/test_noop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data-processing-lib/python/test/data_processing_tests/transform/test_noop.py b/data-processing-lib/python/test/data_processing_tests/transform/test_noop.py index ed0f08872..1843d1af9 100644 --- a/data-processing-lib/python/test/data_processing_tests/transform/test_noop.py +++ b/data-processing-lib/python/test/data_processing_tests/transform/test_noop.py @@ -19,7 +19,7 @@ ) -table = pa.Table.from_pydict({"name": pa.array(["Tom", "Dick", "Jane"]), "age": pa.array([0, 1, 2])}) +table = pa.Table.from_pydict({"name": pa.array(["Tom", "Dick", "John"]), "age": pa.array([0, 1, 2])}) expected_table = table # We're a noop after all. expected_metadata_list = [{"nfiles": 1, "nrows": 3}, {}] # transform() result # flush() result