@@ -72,9 +72,7 @@ create_linter_for_phrase!(HumanLife, "human life", 1);
72
72
create_linter_for_phrase ! ( ThatChallenged , "that challenged" , 2 ) ;
73
73
create_linter_for_phrase ! ( NoLonger , "no longer" , 1 ) ;
74
74
create_linter_for_phrase ! ( NeedHelp , "need help" , 1 ) ;
75
- create_linter_for_phrase ! ( Decision , "make a decision" , 1 ) ;
76
75
create_linter_for_phrase ! ( OfCourse , "of course" , 1 ) ;
77
-
78
76
create_linter_for_phrase ! ( AndAlike , "and alike" , 1 ) ;
79
77
create_linter_for_phrase ! ( BadRap , "bad rap" , 1 ) ;
80
78
create_linter_for_phrase ! ( BatedBreath , "bated breath" , 1 ) ;
@@ -93,8 +91,8 @@ mod tests {
93
91
use crate :: linting:: tests:: { assert_lint_count, assert_suggestion_result} ;
94
92
95
93
use super :: {
96
- BadRap , BatedBreath , ChangeTack , Decision , EnMasse , HungerPang , LetAlone , LoAndBehold ,
97
- MootPoint , OfCourse , SneakingSuspicion , SupposeTo , TurnItOff ,
94
+ BadRap , BatedBreath , ChangeTack , EnMasse , HungerPang , LetAlone , LoAndBehold , MootPoint ,
95
+ OfCourse , SneakingSuspicion , SupposeTo , TurnItOff ,
98
96
} ;
99
97
100
98
#[ test]
@@ -122,15 +120,6 @@ mod tests {
122
120
assert_suggestion_result ( "Turn i of" , TurnItOff :: default ( ) , "Turn it off" ) ;
123
121
}
124
122
125
- #[ test]
126
- fn take_a_decision ( ) {
127
- assert_suggestion_result (
128
- "we should take a decision on this" ,
129
- Decision :: default ( ) ,
130
- "we should make a decision on this" ,
131
- ) ;
132
- }
133
-
134
123
#[ test]
135
124
fn off_course ( ) {
136
125
assert_suggestion_result (
0 commit comments