Remove parameters from test functions in encoder

This commit is contained in:
Daniel Sanchez Quiros 2024-02-09 11:45:57 +01:00
parent 53c1d0fb59
commit 94c18f3cb9
1 changed files with 5 additions and 5 deletions

View File

@ -18,19 +18,19 @@ class TestEncoder(TestCase):
def test_chunkify(self):
pass
def test_compute_row_kzg_commitments(self, rows: List[bytearray]):
def test_compute_row_kzg_commitments(self):
pass
def test_rs_encode_rows(self, rows: List[bytearray]):
def test_rs_encode_rows(self):
pass
def test_compute_rows_proofs(self, rows: List[bytearray], row_commitments: List[bytearray]):
def test_compute_rows_proofs(self):
pass
def test_compute_column_kzg_commitments(self, rows: List[bytearray]):
def test_compute_column_kzg_commitments(self):
pass
def test_generate_aggregated_column_commitments(self, rows: List[bytearray], column_commitments: List[Commitment]):
def test_generate_aggregated_column_commitments(self):
pass
def test_encode(self):