From afa4629dade521090bfff0987a79c48891471ce7 Mon Sep 17 00:00:00 2001 From: Alex Rousskov Date: Fri, 4 Aug 2023 00:55:41 +0000 Subject: [PATCH] Source Format Enforcement (#1439) This change is a reference point for automated CONTRIBUTORS updates. --- CONTRIBUTORS | 1 + src/tests/testCacheManager.cc | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 815f0c37cc..82657ce1b6 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -46,6 +46,7 @@ Thank you! Andrew Doran Andrew Evdokimov Andrew Hoying + Andrew Novikov Andrew Tridgell Andrey Andrey Shorin diff --git a/src/tests/testCacheManager.cc b/src/tests/testCacheManager.cc index a23aee7419..fcbfffa1f3 100644 --- a/src/tests/testCacheManager.cc +++ b/src/tests/testCacheManager.cc @@ -54,7 +54,7 @@ CacheManagerInternals::testValidUrl(const AnyP::Uri &url) (void)ParseUrl(url); } catch (...) { std::cerr << "\nFAIL: " << url << - Debug::Extra << "error: " << CurrentException << "\n"; + Debug::Extra << "error: " << CurrentException << "\n"; CPPUNIT_FAIL("rejected a valid URL"); } } @@ -65,7 +65,7 @@ CacheManagerInternals::testInvalidUrl(const AnyP::Uri &url, const char *const pr try { (void)ParseUrl(url); std::cerr << "\nFAIL: " << url << - Debug::Extra << "error: should be rejected due to '" << problem << "'\n"; + Debug::Extra << "error: should be rejected due to '" << problem << "'\n"; } catch (const TextException &) { return; // success -- the parser signaled bad input } -- 2.47.3