[multimedia/kwave] libkwave/autotests: fix string2date test
Mark Penner <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 8b4ae3011c3d5685376b5c86dac9d107a7f57275 by Mark Penner.
Committed on 17/07/2026 at 03:14.
Pushed by mrp into branch 'master'.
fix string2date test
M +1 -1 libkwave/autotests/test_Utils.cpp
https://invent.kde.org/multimedia/kwave/-/commit/8b4ae3011c3d5685376b5c86dac9d107a7f57275
diff --git a/libkwave/autotests/test_Utils.cpp b/libkwave/autotests/test_Utils.cpp
index cec0447a..0aef26f3 100644
--- a/libkwave/autotests/test_Utils.cpp
+++ b/libkwave/autotests/test_Utils.cpp
@@ -24,7 +24,7 @@ void TestUtils::test_string2date()
QCOMPARE(Kwave::string2date(QStringLiteral("12/23/99 1:23 PM")),
QStringLiteral("1999-12-23T13:23:00"));
QCOMPARE(Kwave::string2date(
- QStringLiteral("Saturday, December 23, 2023 1:23:45 AM CET")),
+ QStringLiteral("Saturday, December 23, 2023 1:23:45 AM Central Standard Time")),
QStringLiteral("2023-12-23T01:23:45"));
}