From 8707a4c2c1396ce8351e86ac524773dc7dc8ee85 Mon Sep 17 00:00:00 2001 From: Justin Traglia Date: Fri, 19 Apr 2024 11:18:11 -0500 Subject: [PATCH] Fix test_recover_all_cells --- .../polynomial_commitments/test_polynomial_commitments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/pyspec/eth2spec/test/eip7594/unittests/polynomial_commitments/test_polynomial_commitments.py b/tests/core/pyspec/eth2spec/test/eip7594/unittests/polynomial_commitments/test_polynomial_commitments.py index f7cf65d2d..1dd9b2d6a 100644 --- a/tests/core/pyspec/eth2spec/test/eip7594/unittests/polynomial_commitments/test_polynomial_commitments.py +++ b/tests/core/pyspec/eth2spec/test/eip7594/unittests/polynomial_commitments/test_polynomial_commitments.py @@ -101,7 +101,7 @@ def test_recover_all_cells(spec): assert original_polynomial == recovered_data[:len(recovered_data) // 2] # Check that the recovered cells match the original cells - assert cells == recovered_data + assert cells == recovered_cells @with_eip7594_and_later