Skip to content

Commit b6b94e3

Browse files
committed
Sync solution
1 parent 6765a0b commit b6b94e3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

solutions/18_iterators/iterators3.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ mod tests {
5252
#[test]
5353
fn test_success() {
5454
assert_eq!(divide(81, 9), Ok(9));
55+
assert_eq!(divide(81, -1), Ok(-81));
56+
assert_eq!(divide(i64::MIN, i64::MIN), Ok(1));
5557
}
5658

5759
#[test]

0 commit comments

Comments
 (0)