From 455270d5eda5bc258745f896f2ae78086961486b Mon Sep 17 00:00:00 2001 From: John Bytheway Date: Wed, 1 Jul 2020 21:49:42 -0400 Subject: [PATCH] Appease clang-tidy --- tests/coordinate_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/coordinate_test.cpp b/tests/coordinate_test.cpp index 8c7e7a1859271..116269fcaf545 100644 --- a/tests/coordinate_test.cpp +++ b/tests/coordinate_test.cpp @@ -14,7 +14,7 @@ static_assert( tripoint_abs_omt::dimension == 3, "" ); TEST_CASE( "coordinate_strings", "[coords]" ) { - CHECK( point_abs_omt( 3, 4 ).to_string() == "(3,4)" ); + CHECK( point_abs_omt( point( 3, 4 ) ).to_string() == "(3,4)" ); SECTION( "coord_point_matches_point" ) { point p = GENERATE( take( num_trials, random_points() ) );