From 8331a87f6c2d0bd7ab2f6e8fdf294cf8012c6986 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Mon, 24 Jun 2024 10:10:48 -0400 Subject: [PATCH] LibTimeZone: Rename TestTimeZone to TestTimeZoneDeprecated This will just allow creating a TestTimeZone in LibUnicode for an ICU- based implementation. --- Tests/LibTimeZone/CMakeLists.txt | 2 +- .../{TestTimeZone.cpp => TestTimeZoneDeprecated.cpp} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename Tests/LibTimeZone/{TestTimeZone.cpp => TestTimeZoneDeprecated.cpp} (100%) diff --git a/Tests/LibTimeZone/CMakeLists.txt b/Tests/LibTimeZone/CMakeLists.txt index db9498537eb..9d118035c8a 100644 --- a/Tests/LibTimeZone/CMakeLists.txt +++ b/Tests/LibTimeZone/CMakeLists.txt @@ -1,5 +1,5 @@ set(TEST_SOURCES - TestTimeZone.cpp + TestTimeZoneDeprecated.cpp ) foreach(source IN LISTS TEST_SOURCES) diff --git a/Tests/LibTimeZone/TestTimeZone.cpp b/Tests/LibTimeZone/TestTimeZoneDeprecated.cpp similarity index 100% rename from Tests/LibTimeZone/TestTimeZone.cpp rename to Tests/LibTimeZone/TestTimeZoneDeprecated.cpp