Update selector columns in expected-failure tests

The addition of the non-identity selector caused the layouter to reorder
some of the selectors in the ECC gadget test circuit.
This commit is contained in:
Jack Grigg 2021-09-28 21:49:06 +01:00
parent d77cb82c8d
commit 631182fb77
1 changed files with 3 additions and 3 deletions

View File

@ -505,7 +505,7 @@ pub mod tests {
Err(vec![
VerifyFailure::ConstraintNotSatisfied {
constraint: (
(16, "Short fixed-base mul gate").into(),
(17, "Short fixed-base mul gate").into(),
0,
"last_window_check"
)
@ -537,13 +537,13 @@ pub mod tests {
prover.verify(),
Err(vec![
VerifyFailure::ConstraintNotSatisfied {
constraint: ((16, "Short fixed-base mul gate").into(), 1, "sign_check")
constraint: ((17, "Short fixed-base mul gate").into(), 1, "sign_check")
.into(),
row: 26
},
VerifyFailure::ConstraintNotSatisfied {
constraint: (
(16, "Short fixed-base mul gate").into(),
(17, "Short fixed-base mul gate").into(),
3,
"negation_check"
)