Remove IsDST() check in wxDateTime DST unit test

IsDST() returns 0 for the DST end date itself, which is wrong, but
doesn't seem to be directly relevant for this test.
This commit is contained in:
Vadim Zeitlin
2017-11-28 23:59:21 +01:00
parent 13c3b5cbd1
commit 5b2f7aa96d

View File

@@ -1589,7 +1589,6 @@ static void DoTestSetFunctionsOnDST(const wxDateTime &orig)
wxDateTime copy = orig; \
copy.func; \
INFO("Original date=" << orig << ", modified=" << copy); \
CHECK(orig.IsDST() == copy.IsDST()); \
CHECK(orig.GetHour() == copy.GetHour()); \
}