test(localization): fix test

Signed-off-by: xsahil03x <[email protected]>
This commit is contained in:
Sahil Kumar
2021-07-22 19:55:23 +05:30
committed by xsahil03x
parent af0356e5a1
commit 17ea43b9d9
@@ -1,8 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart'; import 'package:flutter_test/flutter_test.dart';
import 'package:stream_chat_flutter/stream_chat_flutter.dart'; import 'package:stream_chat_flutter/stream_chat_flutter.dart';
import 'package:stream_chat_localizations/src/stream_chat_localizations.dart';
import 'package:stream_chat_localizations/stream_chat_localizations.dart';
void main() { void main() {
for (final language in kStreamChatSupportedLanguages) { for (final language in kStreamChatSupportedLanguages) {
@@ -183,12 +182,8 @@ void main() {
test('should throw if try to load locale which is not supported', () async { test('should throw if try to load locale which is not supported', () async {
const locale = Locale('not-supported-locale'); const locale = Locale('not-supported-locale');
expect(
GlobalStreamChatLocalizations.delegate.isSupported(locale),
isFalse,
);
try { try {
await GlobalStreamChatLocalizations.delegate.load(locale); getStreamChatTranslation(locale);
} catch (e) { } catch (e) {
expect(e, isA<AssertionError>()); expect(e, isA<AssertionError>());
} }