@@ -29,21 +29,21 @@ fn doubly() {
2929
3030 list. pop_front ( ) ;
3131 #[ cfg( target_pointer_width = "64" ) ]
32- assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 5 ) ;
32+ assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 6 ) ;
3333 #[ cfg( target_pointer_width = "32" ) ]
3434 assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 6 ) ;
3535
3636 list. pop_front ( ) ;
3737 #[ cfg( target_pointer_width = "64" ) ]
38- assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 6 ) ;
38+ assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 7 ) ;
3939 #[ cfg( target_pointer_width = "32" ) ]
40- assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 0 ) ;
40+ assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 7 ) ;
4141
4242 list. pop_front ( ) ;
4343 #[ cfg( target_pointer_width = "64" ) ]
4444 assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 0 ) ;
4545 #[ cfg( target_pointer_width = "32" ) ]
46- assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 1 ) ;
46+ assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 0 ) ;
4747
4848 list. pop_back ( ) ;
4949
@@ -78,12 +78,12 @@ fn singly() {
7878
7979 list. pop_front ( ) ;
8080 #[ cfg( target_pointer_width = "64" ) ]
81- assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 7 ) ;
81+ assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 1 ) ;
8282 #[ cfg( target_pointer_width = "32" ) ]
83- assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 4 ) ;
83+ assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 1 ) ;
8484
8585 list. pop_front ( ) ;
86- assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 0 ) ;
86+ assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 2 ) ;
8787
8888 list. clear ( ) ;
8989 assert_eq ! ( list. node_utilization( ) . num_closed_nodes, 0 ) ;
0 commit comments