From 217c359a4e9786e2f506665fa963e80cc4955a51 Mon Sep 17 00:00:00 2001 From: Tarak Ben Youssef Date: Tue, 24 Oct 2023 16:04:42 -0500 Subject: [PATCH] fix indent --- runtime/runtime_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/runtime_test.go b/runtime/runtime_test.go index ae99cfc67a..f19f19b04d 100644 --- a/runtime/runtime_test.go +++ b/runtime/runtime_test.go @@ -4743,8 +4743,8 @@ func TestRuntimeRandom(t *testing.T) { script := []byte(` transaction { prepare() { - let rand1 = revertibleRandom() - log(rand1) + let rand1 = revertibleRandom() + log(rand1) let rand2 = unsafeRandom() log(rand2) }