From 560ae6e0bc4efb7ec4b6d8f2e6e11c99eba5123c Mon Sep 17 00:00:00 2001 From: Sander Spies Date: Fri, 7 Feb 2020 11:10:47 +0100 Subject: [PATCH] Remove block skips. --- src/test/contracts/bitwise_arithmetic.ligo | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/contracts/bitwise_arithmetic.ligo b/src/test/contracts/bitwise_arithmetic.ligo index 3b5c9d30d..ce40fab44 100644 --- a/src/test/contracts/bitwise_arithmetic.ligo +++ b/src/test/contracts/bitwise_arithmetic.ligo @@ -1,16 +1,16 @@ // Test PascaLIGO bitwise operators function or_op (const n : nat) : nat is - begin skip end with bitwise_or(n , 4n) + bitwise_or(n , 4n) function and_op (const n : nat) : nat is - begin skip end with bitwise_and(n , 7n) + bitwise_and(n , 7n) function xor_op (const n : nat) : nat is - begin skip end with bitwise_xor(n , 7n) + bitwise_xor(n , 7n) function lsl_op (const n : nat) : nat is - begin skip end with bitwise_lsl(n , 7n) + bitwise_lsl(n , 7n) function lsr_op (const n : nat) : nat is - begin skip end with bitwise_lsr(n , 7n) \ No newline at end of file + bitwise_lsr(n , 7n) \ No newline at end of file