Fix tests

This commit is contained in:
Hillel Coren 2020-07-27 08:21:23 +03:00
parent f2982c8e88
commit d2aef4aa0d
1 changed files with 1 additions and 2 deletions

View File

@ -1,4 +1,3 @@
import 'package:flutter/foundation.dart';
import 'package:invoiceninja_flutter/utils/strings.dart';
abstract class LocaleCodeAware {
@ -38989,7 +38988,7 @@ mixin LocalizationsProvider on LocaleCodeAware {
String lookup(String key) {
final lookupKey = toSnakeCase(key);
if (!kReleaseMode && !_localizedValues[localeCode].containsKey(key)) {
if (!_localizedValues[localeCode].containsKey(key)) {
print('ERROR: localization key not found - $key');
}