File tree 1 file changed +3
-3
lines changed
src/test/java/org/apache/commons/codec/language/bm
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ public void testSetRuleTypeToRulesIllegalArgumentException() {
189
189
*/
190
190
@ Test /* timeout = 20000L */
191
191
public void testSpeedCheck () throws EncoderException {
192
- final BeiderMorseEncoder bmpm = this . createGenericApproxEncoder ();
192
+ final BeiderMorseEncoder bmpm = createGenericApproxEncoder ();
193
193
final StringBuilder stringBuffer = new StringBuilder ();
194
194
stringBuffer .append (TEST_CHARS [0 ]);
195
195
for (int i = 0 , j = 1 ; i < 40 ; i ++, j ++) {
@@ -203,7 +203,7 @@ public void testSpeedCheck() throws EncoderException {
203
203
204
204
@ Test
205
205
public void testSpeedCheck2 () throws EncoderException {
206
- final BeiderMorseEncoder bmpm = this . createGenericApproxEncoder ();
206
+ final BeiderMorseEncoder bmpm = createGenericApproxEncoder ();
207
207
final String phrase = "ItstheendoftheworldasweknowitandIfeelfine" ;
208
208
209
209
for (int i = 1 ; i <= phrase .length (); i ++) {
@@ -213,7 +213,7 @@ public void testSpeedCheck2() throws EncoderException {
213
213
214
214
@ Test
215
215
public void testSpeedCheck3 () throws EncoderException {
216
- final BeiderMorseEncoder bmpm = this . createGenericApproxEncoder ();
216
+ final BeiderMorseEncoder bmpm = createGenericApproxEncoder ();
217
217
final String phrase = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz" ;
218
218
219
219
for (int i = 1 ; i <= phrase .length (); i ++) {
You can’t perform that action at this time.
0 commit comments