Skip to content

Commit

Permalink
ensure all operand sizes are tested
Browse files Browse the repository at this point in the history
  • Loading branch information
maramihali committed May 5, 2023
1 parent 9a8225e commit 279e8e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/barretenberg/stdlib/primitives/logic/logic.test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ TYPED_TEST(LogicTest, TestCorrectLogic)
};

auto composer = Composer();
for (size_t i = 8; i < 248; i += 8) {
run_test(8, composer);
for (size_t i = 8; i < 255; i += 8) {
run_test(i, composer);
}
auto prover = composer.create_prover();
plonk::proof proof = prover.construct_proof();
Expand Down

0 comments on commit 279e8e7

Please sign in to comment.