Skip to content

Commit f6801f7

Browse files
committed
Update test_csv_field.cpp
1 parent 4a37e4b commit f6801f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_csv_field.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,9 +148,9 @@ TEST_CASE("CSVField get<>() - Floating Point Value", "[test_csv_field_get_float]
148148
REQUIRE(euler.try_get(double_out));
149149
REQUIRE(double_out == Catch::Approx(2.718));
150150

151-
double long_double_out = 0;
151+
long double long_double_out = 0;
152152
REQUIRE(euler.try_get(long_double_out));
153-
REQUIRE(double_out == Catch::Approx(2.718l));
153+
REQUIRE(long_double_out == Catch::Approx(2.718l));
154154

155155
int int_out = 0;
156156
REQUIRE_FALSE(euler.try_get(int_out));

0 commit comments

Comments
 (0)