diff options
| author | YongDo-Hyun <97219311+YongDo-Hyun@users.noreply.github.com> | 2025-12-28 00:09:54 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-03-27 19:57:09 +0300 |
| commit | 4cf18d33552a10c82ee5cf650074ec42bc73654c (patch) | |
| tree | 042b9772896e76604597345b273033ba53ef2cff | |
| parent | 4999a71561b8a82f3e87cde28b634b843933aefa (diff) | |
| download | Project-Tick-4cf18d33552a10c82ee5cf650074ec42bc73654c.tar.gz Project-Tick-4cf18d33552a10c82ee5cf650074ec42bc73654c.zip | |
feat: Update test/test_value.h
Co-authored-by: Alexandru Ionut Tripon <alexandru.tripon97@gmail.com>
Signed-off-by: YongDo-Hyun <97219311+YongDo-Hyun@users.noreply.github.com>
| -rw-r--r-- | test/test_value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_value.h b/test/test_value.h index 9f666be2aa..6bccb6d487 100644 --- a/test/test_value.h +++ b/test/test_value.h @@ -23,7 +23,7 @@ public: v = value(); v = int32_t(100000); TS_ASSERT_EQUALS(int64_t(v), int64_t(100000)); - TS_ASSERT_EQUALS(double(v), static_cast<double>(int32_t(100000))); + TS_ASSERT_EQUALS(double(v), 100000.); v = value(); v = float(3.14f); |
