From 0d4c3183e1639899a911f3b2a1afc53733336f32 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Mon, 27 May 2024 13:08:30 +0200 Subject: [PATCH] Format files with Runic :^) --- test/runtests.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index ce82b5b..913c14a 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -19,13 +19,13 @@ end z(n) = "0"^n test_cases = [ # Hex UInt8 - ("0x" * z(n) * "1" => "0x01" for n in 0:1)..., + ("0x" * z(n) * "1" => "0x01" for n in 0:1)..., # Hex UInt16 - ("0x" * z(n) * "1" => "0x0001" for n in 2:3)..., + ("0x" * z(n) * "1" => "0x0001" for n in 2:3)..., # Hex UInt32 - ("0x" * z(n) * "1" => "0x00000001" for n in 4:7)..., + ("0x" * z(n) * "1" => "0x00000001" for n in 4:7)..., # Hex UInt64 - ("0x" * z(n) * "1" => "0x0000000000000001" for n in 8:15)..., + ("0x" * z(n) * "1" => "0x0000000000000001" for n in 8:15)..., # Hex UInt128 ("0x" * z(n) * "1" => "0x" * z(31) * "1" for n in 16:31)..., # Hex BigInt