| Index: pkg/intl/test/find_default_locale_standalone_test.dart
|
| diff --git a/pkg/intl/test/find_default_locale_standalone_test.dart b/pkg/intl/test/find_default_locale_standalone_test.dart
|
| index b27b5783436f10f90d95b28ea68c78ecec6614dd..50167c6c5c81e56ae1e7e095e54d131e2a1078a3 100644
|
| --- a/pkg/intl/test/find_default_locale_standalone_test.dart
|
| +++ b/pkg/intl/test/find_default_locale_standalone_test.dart
|
| @@ -17,6 +17,12 @@ main() {
|
| var callback = expectAsync1(verifyLocale);
|
| findSystemLocale().then(callback);
|
| });
|
| +
|
| + test("Test windows regex", () {
|
| + expect(sysInfoRegex.hasMatch("System Locale: en-US;blah blah"), isTrue);
|
| + expect(sysInfoRegex.hasMatch("System Locale: ru;sdfadsf"), isTrue);
|
| + expect(sysInfoRegex.hasMatch("System Locale: ru;"), isTrue);
|
| + });
|
| }
|
|
|
| verifyLocale(_) {
|
|
|