Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Update pubspec Intl version #1203

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
collection: '>=0.9.1 <1.0.0'
di: '>=1.0.0 <2.0.0'
html5lib: '>=0.10.0 <0.11.0'
intl: '>=0.8.7 <0.10.0'
intl: '>=0.8.7 <0.12.0'
perf_api: '>=0.0.8 <0.1.0'
route_hierarchical: '>=0.4.21 <0.5.0'
web_components: '>=0.3.3 <0.4.0'
Expand Down
2 changes: 1 addition & 1 deletion test/formatter/date_spec.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ void main() {
});

it('should accept various locales', async(() {
expect(Intl.withLocale('de', () => date(noon, "medium"))).toEqual('3. Sep 2010 12:05:08');
expect(Intl.withLocale('sv', () => date(noon, "medium"))).toEqual('3 sep 2010 12:05:08');
expect(Intl.withLocale('fr', () => date(noon, "medium"))).toEqual('3 sept. 2010 12:05:08');
}));
});
Expand Down