From 9c0b543c04139b29e5bf82d96607752e2d7e3be0 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Wed, 25 Aug 2021 00:47:26 +0200 Subject: [PATCH] Rename wxCmpNaturalGeneric() test to its actual name The name of the test was still using the original function name, update it to the actually used name. No real changes. --- tests/arrays/arrays.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/arrays/arrays.cpp b/tests/arrays/arrays.cpp index 4d03aa1751..0ef734fd7a 100644 --- a/tests/arrays/arrays.cpp +++ b/tests/arrays/arrays.cpp @@ -769,7 +769,7 @@ TEST_CASE("wxDynArray::IndexFromEnd", "[dynarray]") } -TEST_CASE("wxNaturalStringComparisonGeneric()", "[wxString][compare]") +TEST_CASE("wxCmpNaturalGeneric", "[wxString][compare]") { // simple string comparison CHECK(wxCmpNaturalGeneric("a", "a") == 0);