diff options
author | 2016-11-14 16:09:22 +0100 | |
---|---|---|
committer | 2016-11-14 16:09:22 +0100 | |
commit | 388ff83c47f3af05e2142b35944a53479d53ac99 (patch) | |
tree | 06d9a78da02f6b0cb9c2dfed1f70ff4cd4eaadf1 | |
parent | e6580c50a28e3c6422f6fe81ea420fed5b2fcf84 (diff) |
Fixed test (nw)
-rw-r--r-- | tests/emu/attotime.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/emu/attotime.cpp b/tests/emu/attotime.cpp index 9ddb931ee52..92348308f91 100644 --- a/tests/emu/attotime.cpp +++ b/tests/emu/attotime.cpp @@ -7,5 +7,5 @@ TEST_CASE("convert 1 sec to attotime", "[emu]") { attotime value = attotime::from_seconds(1); - REQUIRE(value.as_attoseconds() == U64(1000000000000000000)); + REQUIRE(value.as_attoseconds() == 1000000000000000000); } |