aboutsummaryrefslogtreecommitdiffstats
path: root/util/datetime/base_ut.cpp
diff options
context:
space:
mode:
authorspacelord <spacelord@yandex-team.ru>2022-02-10 16:48:15 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:15 +0300
commit16747e4f77455cca4932df21eb76f12cb0a97a5c (patch)
tree4dd6da4102d99d0d69dec53c1050d290a850a9f2 /util/datetime/base_ut.cpp
parenta817f5de12611ec73085eba17f8ec7740a46bdb7 (diff)
downloadydb-16747e4f77455cca4932df21eb76f12cb0a97a5c.tar.gz
Restoring authorship annotation for <spacelord@yandex-team.ru>. Commit 1 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 afc3f802eb..d7fef849db 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>();