From d155bce90d9c347fe56553e53f7ccd5645e74572 Mon Sep 17 00:00:00 2001 From: Conor Hoekstra Date: Thu, 22 Jul 2021 12:44:33 -0400 Subject: [PATCH] Remove test --- cpp/tests/strings/fixed_point_tests.cpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/cpp/tests/strings/fixed_point_tests.cpp b/cpp/tests/strings/fixed_point_tests.cpp index 4ef24e54ec4..d8b570cee8b 100644 --- a/cpp/tests/strings/fixed_point_tests.cpp +++ b/cpp/tests/strings/fixed_point_tests.cpp @@ -16,7 +16,6 @@ #include #include -#include #include #include @@ -218,19 +217,3 @@ TEST_F(StringsConvertTest, IsFixedPoint) cudf::test::fixed_width_column_wrapper({true, true, true, false, false, false, false}); CUDF_TEST_EXPECT_COLUMNS_EQUIVALENT(*results, expected64_scaled); } - -TEST_F(StringsConvertTest, FloatFixedPoint) -{ - using DecimalType = numeric::decimal64; - - cudf::test::fixed_width_column_wrapper floats( - {1.234E3, -876.0, 543.2, -0.12, .25, -2E-3, -.0027, 0.0}); - auto strings_col = cudf::strings::from_floats(floats); - - auto results = cudf::strings::to_fixed_point( - cudf::strings_column_view(strings_col->view()), - cudf::data_type{cudf::type_to_id(), numeric::scale_type{-2}}); - - cudf::test::print(strings_col->view()); - cudf::test::print(results->view()); -}