From 98d68c64a32901c1c6c35167d770e23397c1b1ef Mon Sep 17 00:00:00 2001 From: Kevin <Kevin> Date: Sun, 3 May 2020 14:34:00 +0200 Subject: [PATCH] removed unnecessary test --- test/test_core_operations.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/test/test_core_operations.py b/test/test_core_operations.py index 75495707..55a57719 100644 --- a/test/test_core_operations.py +++ b/test/test_core_operations.py @@ -4,7 +4,7 @@ B-ASIC test suite for the core operations. from b_asic import \ Constant, Addition, Subtraction, Multiplication, ConstantMultiplication, Division, \ - SquareRoot, ComplexConjugate, Max, Min, Absolute, Butterfly, MAD + SquareRoot, ComplexConjugate, Max, Min, Absolute, Butterfly class TestConstant: def test_constant_positive(self): @@ -162,9 +162,4 @@ class TestButterfly: def test_buttefly_complex(self): test_operation = Butterfly() assert test_operation.evaluate_output(0, [2+1j, 3-2j]) == 5-1j - assert test_operation.evaluate_output(1, [2+1j, 3-2j]) == -1+3j - - def test_split(self): - but1 = Butterfly() - split = but1.split() - assert len(split) == 2 + assert test_operation.evaluate_output(1, [2+1j, 3-2j]) == -1+3j \ No newline at end of file -- GitLab