File tree Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Expand file tree Collapse file tree 1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ mod tests {
77
77
}
78
78
79
79
#[ test]
80
- fn count_complete_equals_for ( ) {
80
+ fn count_complete_equals_for ( ) {
81
81
let map = get_map ( ) ;
82
82
let progressStates = vec ! [ Progress :: Complete , Progress :: Some , Progress :: None ] ;
83
83
for progressState in progressStates {
@@ -100,19 +100,13 @@ mod tests {
100
100
#[ test]
101
101
fn count_collection_some ( ) {
102
102
let collection = get_vec_map ( ) ;
103
- assert_eq ! (
104
- 1 ,
105
- count_collection_iterator( & collection, Progress :: Some )
106
- ) ;
103
+ assert_eq ! ( 1 , count_collection_iterator( & collection, Progress :: Some ) ) ;
107
104
}
108
105
109
106
#[ test]
110
107
fn count_collection_none ( ) {
111
108
let collection = get_vec_map ( ) ;
112
- assert_eq ! (
113
- 4 ,
114
- count_collection_iterator( & collection, Progress :: None )
115
- ) ;
109
+ assert_eq ! ( 4 , count_collection_iterator( & collection, Progress :: None ) ) ;
116
110
}
117
111
118
112
#[ test]
You can’t perform that action at this time.
0 commit comments