From 6134a08d53b3557e5617fa436a2a95c05aea0d93 Mon Sep 17 00:00:00 2001 From: Andrey Andreyevich Bienkowski Date: Fri, 5 Jan 2024 17:20:07 +0300 Subject: [PATCH] Make overmap_terrain_coverage less likely to produce spurious errors --- tests/overmap_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/overmap_test.cpp b/tests/overmap_test.cpp index 20b1734d5c759..15264f7ccdcf8 100644 --- a/tests/overmap_test.cpp +++ b/tests/overmap_test.cpp @@ -301,7 +301,7 @@ TEST_CASE( "overmap_terrain_coverage", "[overmap][slow]" ) point_abs_omt origin; map &main_map = get_map(); - for( const point_abs_omt &p : closest_points_first( origin, 0, 10 * OMAPX - 1 ) ) { + for( const point_abs_omt &p : closest_points_first( origin, 0, 15 * OMAPX - 1 ) ) { // We need to avoid OMTs that overlap with the 'main' map, so we start at a // non-zero minimum radius and ensure that the 'main' map is inside that // minimum radius.