From ed68242c0c03ed625d0c7d3d4980009fdda73a18 Mon Sep 17 00:00:00 2001 From: Eric Floyd Date: Sat, 9 Mar 2024 16:41:30 -0500 Subject: [PATCH] remove cout --- src/modules/location/LocationTest.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/modules/location/LocationTest.cpp b/src/modules/location/LocationTest.cpp index e60e68f8a..625905baf 100644 --- a/src/modules/location/LocationTest.cpp +++ b/src/modules/location/LocationTest.cpp @@ -144,10 +144,6 @@ TEST_P(LocationTest, shouldGenerateState) const auto generatedState = Location::state(country); - for (const auto& i : countryAddresses.states) - { - std::cout << i << std::endl; - } ASSERT_TRUE(std::ranges::any_of(countryAddresses.states, [&generatedState](const std::string& state) { return state == generatedState; })); }