Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Hazardu committed Dec 17, 2024
1 parent 25674c8 commit 7dd4142
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/utils/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ def elaborate(self, platform):
return m


@pytest.mark.parametrize("size", [1,2,3,4,5,6,7,8,9,15,16,17,31,32,33,63,64,65,97,98,127,128])
@pytest.mark.parametrize("size", [1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 16, 17, 31, 32, 33, 63, 64, 65, 97, 98, 127, 128])
class TestCountLeadingZeros(TestCaseWithSimulator):
@pytest.fixture(scope="function", autouse=True)
def setup_fixture(self, size):
self.size = size
random.seed(14)
self.test_number = 10
self.test_number = 40
self.m = CLZTestCircuit(self.size)

def check(self, sim: TestbenchContext, n):
Expand Down Expand Up @@ -156,13 +156,13 @@ def elaborate(self, platform):
return m


@pytest.mark.parametrize("size", [1,2,3,4,5,6,7,8,9,15,16,17,31,32,33,63,64,65,97,98,127,128])
@pytest.mark.parametrize("size", [1, 2, 3, 4, 5, 6, 7, 8, 9, 15, 16, 17, 31, 32, 33, 63, 64, 65, 97, 98, 127, 128])
class TestCountTrailingZeros(TestCaseWithSimulator):
@pytest.fixture(scope="function", autouse=True)
def setup_fixture(self, size):
self.size = size
random.seed(14)
self.test_number = 10
self.test_number = 40
self.m = CTZTestCircuit(self.size)

def check(self, sim: TestbenchContext, n):
Expand Down

0 comments on commit 7dd4142

Please sign in to comment.