From d2aef4aa0d2b19d3d7c67ec8181f14a12b63621c Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 27 Jul 2020 08:21:23 +0300 Subject: [PATCH] Fix tests --- lib/utils/i18n.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/utils/i18n.dart b/lib/utils/i18n.dart index 2a2240d7c..a9ca316cf 100644 --- a/lib/utils/i18n.dart +++ b/lib/utils/i18n.dart @@ -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'); }