diff options
-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); } |