Skip to content

Commit c7c60cc

Browse files
committed
Fixed use of string directly instead of constant.
1 parent 456a86b commit c7c60cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TestsProject/TestsProjectTests/G8RecognitionTestsHelper.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ - (void)waitTimeLmit:(NSTimeInterval)maximumWait whileTrue:(BOOL (^)())shouldKee
5151
- (void)setupTesseract
5252
{
5353
if (self.tesseract == nil) {
54-
self.tesseract = [[G8Tesseract alloc] initWithLanguage:@"eng"];
54+
self.tesseract = [[G8Tesseract alloc] initWithLanguage:kG8Languages];
5555
}
5656

5757
self.tesseract.delegate = self;

0 commit comments

Comments
 (0)