From b1f35121a164dfce5e524513905e0a48f1c0be15 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Sun, 19 Jan 2025 15:55:32 -0500 Subject: [PATCH] remove `@time` from tests --- test/runtests.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index 671d42a..98bd1f6 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -182,6 +182,6 @@ end @test SHA.shake256(b"",UInt(32)) == hex2bytes("46b9dd2b0ba88d13233b3feb743eeb243fcd52ea62b81b82b50c27646ed5762f") @test SHA.shake256(codeunits("0"^135),UInt(32)) == hex2bytes("ab11f61b5085a108a58670a66738ea7a8d8ce23b7c57d64de83eaafb10923cf8") end - @time SHA.shake256(b"abc",UInt(100000)) - @time SHA.shake128(b"abc",UInt(100000)) + SHA.shake256(b"abc",UInt(100000)) + SHA.shake128(b"abc",UInt(100000)) end