From: Luke Kenneth Casson Leighton Date: Tue, 20 Aug 2019 13:06:50 +0000 (+0100) Subject: add missing arg part_ops to unit test X-Git-Tag: ls180-24jan2020~460 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=594c33665ac8617dfcb3d80e43294e9fa53c3bbb;p=ieee754fpu.git add missing arg part_ops to unit test --- diff --git a/src/ieee754/part_mul_add/test/test_multiply.py b/src/ieee754/part_mul_add/test/test_multiply.py index f15e948e..fd615ced 100644 --- a/src/ieee754/part_mul_add/test/test_multiply.py +++ b/src/ieee754/part_mul_add/test/test_multiply.py @@ -250,7 +250,8 @@ class TestAddReduce(unittest.TestCase): module = AddReduce(inputs, width, register_levels, - partition_points) + partition_points, + []) file_name = "add_reduce" if len(register_levels) != 0: file_name += f"-{'_'.join(map(repr, register_levels))}"