-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -133,7 +133,6 @@ fn test_add_sub() { | |
|
||
let all_test_cases = test_cases | ||
.iter() | ||
.map(|(a, b, c)| (a, b, c)) | ||
.chain(test_cases.iter().map(|(a, b, c)| (b, a, c))); | ||
Check failure on line 136 in integer/tests/modular.rs
|
||
|
||
for (a, b, c) in all_test_cases { | ||
Check failure on line 138 in integer/tests/modular.rs
|
||
|
@@ -203,7 +202,6 @@ fn test_mul() { | |
|
||
let all_test_cases = test_cases | ||
.iter() | ||
.map(|(a, b, c)| (a, b, c)) | ||
.chain(test_cases.iter().map(|(a, b, c)| (b, a, c))); | ||
Check failure on line 205 in integer/tests/modular.rs
|
||
|
||
for (a, b, c) in all_test_cases { | ||
Check failure on line 207 in integer/tests/modular.rs
|
||
|