From c3756c04e396513bdc0b8f9a65880524f6ee49c8 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Fri, 28 Jun 2024 15:59:49 -0700 Subject: [PATCH] Remove excessive logging in test. (#31715) --- sdks/python/apache_beam/io/parquetio_test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sdks/python/apache_beam/io/parquetio_test.py b/sdks/python/apache_beam/io/parquetio_test.py index 06d9a52714046..e33ee4ec11299 100644 --- a/sdks/python/apache_beam/io/parquetio_test.py +++ b/sdks/python/apache_beam/io/parquetio_test.py @@ -410,9 +410,8 @@ def test_schema_read_write(self): rows = [beam.Row(a=1, b='x'), beam.Row(a=2, b='y')] stable_repr = lambda row: json.dumps(row._asdict()) with TestPipeline() as p: - _ = p | Create(rows) | WriteToParquet(path) | beam.Map(print) + _ = p | Create(rows) | WriteToParquet(path) with TestPipeline() as p: - # json used for stable sortability readback = ( p | ReadFromParquet(path + '*', as_rows=True)