summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2023-02-20 14:46:21 -0600
committerAaron Franke <arnfranke@yahoo.com>2023-02-20 14:46:21 -0600
commitc551d7489c0d803c5c6d0dc6b08f3abf3a94658a (patch)
tree782daadaed396c72797f2d7d2c6b0cc0fb0e4431 /tests
parent9c960a8c2494eb826a557a7ffc96dd4547f9d31e (diff)
Explicitly cast to Variant's int type in Time tests
Diffstat (limited to 'tests')
-rw-r--r--tests/core/test_time.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/test_time.h b/tests/core/test_time.h
index 7c8465cd12..6e31324359 100644
--- a/tests/core/test_time.h
+++ b/tests/core/test_time.h
@@ -91,7 +91,7 @@ TEST_CASE("[Time] Datetime dictionary conversion methods") {
datetime[YEAR_KEY] = 2014;
datetime[MONTH_KEY] = 2;
datetime[DAY_KEY] = 9;
- datetime[WEEKDAY_KEY] = Weekday::WEEKDAY_SUNDAY;
+ datetime[WEEKDAY_KEY] = (int64_t)Weekday::WEEKDAY_SUNDAY;
datetime[HOUR_KEY] = 22;
datetime[MINUTE_KEY] = 10;
datetime[SECOND_KEY] = 30;
@@ -100,7 +100,7 @@ TEST_CASE("[Time] Datetime dictionary conversion methods") {
date_only[YEAR_KEY] = 2014;
date_only[MONTH_KEY] = 2;
date_only[DAY_KEY] = 9;
- date_only[WEEKDAY_KEY] = Weekday::WEEKDAY_SUNDAY;
+ date_only[WEEKDAY_KEY] = (int64_t)Weekday::WEEKDAY_SUNDAY;
Dictionary time_only;
time_only[HOUR_KEY] = 22;