Skip to content

Commit e4ae789

Browse files
committed
unnecessary test is deleted
1 parent ffdefd4 commit e4ae789

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

tests/ring_iter_mut.rs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,6 @@ mod doubly;
22

33
use orx_linked_list::*;
44

5-
#[test]
6-
fn abc() {
7-
let mut list: DoublyList<_> = (0..5).collect();
8-
let idx: Vec<_> = list.indices().collect();
9-
10-
let i = 1;
11-
12-
let iter = list.ring_iter_mut(&idx[i]);
13-
for x in iter {
14-
dbg!(*x);
15-
}
16-
17-
dbg!("_---------_");
18-
19-
// assert_eq!(list.len(), 3333);
20-
}
21-
225
#[test]
236
fn ring_iter_mut_on_list() {
247
let mut list = doubly::new_doubly(&mut doubly::rng(), 40, 40);

0 commit comments

Comments
 (0)