From f96ee8132d74ce1e9f0881f4f1e8c40426ae9c45 Mon Sep 17 00:00:00 2001 From: Jeremy Dyer Date: Wed, 16 Jun 2021 15:44:49 +0000 Subject: [PATCH] Fixing macro syntax issue --- cpp/tests/io/arrow_io_source_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/tests/io/arrow_io_source_test.cpp b/cpp/tests/io/arrow_io_source_test.cpp index 863b2e631e1..fa99dbc17ad 100644 --- a/cpp/tests/io/arrow_io_source_test.cpp +++ b/cpp/tests/io/arrow_io_source_test.cpp @@ -61,7 +61,7 @@ TEST_F(ArrowIOTest, URIFileSystem) ASSERT_EQ(2, tbl.tbl->num_rows()); } -#if defined(S3_ENABLED) +#ifdef S3_ENABLED TEST_F(ArrowIOTest, S3FileSystem) { @@ -92,6 +92,6 @@ TEST_F(ArrowIOTest, S3URIWhenNotEnabled) cudf::logic_error); } -#ifndef S3_ENABLED +#endif CUDF_TEST_PROGRAM_MAIN()