Skip to content

Commit c2de991

Browse files
committed
Address comments from code review
1 parent c2e5342 commit c2de991

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/integer/mat_z/arithmetic/mul_scalar.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,8 +408,8 @@ mod test_mul_zq {
408408
fn borrowed_correctness() {
409409
let mat_1 = MatZ::from_str("[[2, 1],[1, 2]]").unwrap();
410410
let mat_2 = mat_1.clone();
411-
let mat_3 = MatZq::from_str("[[2, 1],[1, 2]] mod 3").unwrap();
412-
let zq = Zq::from((1, 3));
411+
let mat_3 = MatZq::from_str("[[1, 2],[2, 1]] mod 3").unwrap();
412+
let zq = Zq::from((2, 3));
413413

414414
let mat_1 = &mat_1 * &zq;
415415
let mat_2 = &zq * &mat_2;

0 commit comments

Comments
 (0)