summaryrefslogtreecommitdiffstats
path: root/util/datetime/base_ut.cpp
diff options
context:
space:
mode:
authorspacelord <[email protected]>2022-02-10 16:48:15 +0300
committerDaniil Cherednik <[email protected]>2022-02-10 16:48:15 +0300
commita0c6d9ad0cf6b94c527a15da147eb24335281b6d (patch)
treeb222e5ac2e2e98872661c51ccceee5da0d291e13 /util/datetime/base_ut.cpp
parent16747e4f77455cca4932df21eb76f12cb0a97a5c (diff)
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'util/datetime/base_ut.cpp')
-rw-r--r--util/datetime/base_ut.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/datetime/base_ut.cpp b/util/datetime/base_ut.cpp
index d7fef849db9..afc3f802eb2 100644
--- a/util/datetime/base_ut.cpp
+++ b/util/datetime/base_ut.cpp
@@ -447,7 +447,7 @@ Y_UNIT_TEST_SUITE(DateTimeTest) {
// division
UNIT_ASSERT_DOUBLES_EQUAL(TDuration::Minutes(1) / TDuration::Seconds(10), 6.0, 1e-9);
}
-
+
Y_UNIT_TEST(TestDurationGetters) {
const TDuration value = TDuration::MicroSeconds(1234567);
UNIT_ASSERT_VALUES_EQUAL(value.Seconds(), 1);
@@ -466,23 +466,23 @@ Y_UNIT_TEST_SUITE(DateTimeTest) {
T onlyHours = T::MicroSeconds(1249570800000000L);
T onlyDays = T::MicroSeconds(1249516800000000L);
ui64 minutes = 20826199;
- ui64 hours = 347103;
+ ui64 hours = 347103;
ui64 days = 14462;
UNIT_ASSERT_VALUES_EQUAL(withTime.Minutes(), minutes);
UNIT_ASSERT_VALUES_EQUAL(onlyMinutes, T::Minutes(minutes));
UNIT_ASSERT_VALUES_EQUAL(onlyMinutes.Minutes(), minutes);
- UNIT_ASSERT_VALUES_EQUAL(withTime.Hours(), hours);
+ UNIT_ASSERT_VALUES_EQUAL(withTime.Hours(), hours);
UNIT_ASSERT_VALUES_EQUAL(onlyMinutes.Hours(), hours);
UNIT_ASSERT_VALUES_EQUAL(onlyHours, T::Hours(hours));
- UNIT_ASSERT_VALUES_EQUAL(onlyHours.Hours(), hours);
+ UNIT_ASSERT_VALUES_EQUAL(onlyHours.Hours(), hours);
UNIT_ASSERT_VALUES_EQUAL(withTime.Days(), days);
UNIT_ASSERT_VALUES_EQUAL(onlyHours.Days(), days);
UNIT_ASSERT_VALUES_EQUAL(onlyDays, T::Days(days));
UNIT_ASSERT_VALUES_EQUAL(onlyDays.Days(), days);
- }
+ }
Y_UNIT_TEST(TestInstantUnits) {
TestTimeUnits<TInstant>();