@@ -82,7 +82,6 @@ create_linter_for_phrase!(HungerPang, "hunger pang", 3);
82
82
create_linter_for_phrase ! ( EnMasse , "en masse" , 1 ) ;
83
83
create_linter_for_phrase ! ( LetAlone , "let alone" , 1 ) ;
84
84
create_linter_for_phrase ! ( LoAndBehold , "lo and behold" , 2 ) ;
85
- create_linter_for_phrase ! ( MootPoint , "moot point" , 3 ) ;
86
85
create_linter_for_phrase ! ( SneakingSuspicion , "sneaking suspicion" , 3 ) ;
87
86
create_linter_for_phrase ! ( SupposeTo , "suppose to" , 1 ) ;
88
87
@@ -91,8 +90,8 @@ mod tests {
91
90
use crate :: linting:: tests:: { assert_lint_count, assert_suggestion_result} ;
92
91
93
92
use super :: {
94
- BadRap , BatedBreath , ChangeTack , EnMasse , HungerPang , LetAlone , LoAndBehold , MootPoint ,
95
- OfCourse , SneakingSuspicion , SupposeTo , TurnItOff ,
93
+ BadRap , BatedBreath , ChangeTack , EnMasse , HungerPang , LetAlone , LoAndBehold , OfCourse ,
94
+ SneakingSuspicion , SupposeTo , TurnItOff ,
96
95
} ;
97
96
98
97
#[ test]
@@ -173,11 +172,6 @@ mod tests {
173
172
assert_suggestion_result ( "long and behold" , LoAndBehold :: default ( ) , "lo and behold" ) ;
174
173
}
175
174
176
- #[ test]
177
- fn mute_point ( ) {
178
- assert_suggestion_result ( "mute point" , MootPoint :: default ( ) , "moot point" ) ;
179
- }
180
-
181
175
#[ test]
182
176
fn sneaky_suspicion ( ) {
183
177
assert_suggestion_result (
0 commit comments