Upgraded to m3_lightmeter_resources: 1.4.0

This commit is contained in:
Vadim 2024-10-06 18:29:26 +02:00
parent 63ff6cc867
commit 98262fc4ee
3 changed files with 4 additions and 4 deletions

View file

@ -34,7 +34,7 @@ dependencies:
m3_lightmeter_resources:
git:
url: "https://github.com/vodemn/m3_lightmeter_resources"
ref: v1.3.0
ref: v1.4.0
material_color_utilities: 0.5.0
package_info_plus: 4.2.0
permission_handler: 10.4.3
@ -66,7 +66,7 @@ dependency_overrides:
m3_lightmeter_resources:
git:
url: "https://github.com/vodemn/m3_lightmeter_resources"
ref: v1.3.0
ref: v1.4.0
material_color_utilities: 0.11.1
flutter:

View file

@ -37,7 +37,7 @@ void main() {
expect(pickerFinder, findsOneWidget);
expect(find.descendant(of: pickerFinder, matching: find.text(S.current.fastestExposurePair)), findsOneWidget);
expect(find.descendant(of: pickerFinder, matching: find.text(S.current.slowestExposurePair)), findsOneWidget);
expect(find.descendant(of: pickerFinder, matching: find.text('f/1.0 - 1/2000')), findsOneWidget);
expect(find.descendant(of: pickerFinder, matching: find.text('f/1.0 - 1/4000')), findsOneWidget);
expect(find.descendant(of: pickerFinder, matching: find.text('f/45 - 1"')), findsOneWidget);
},
);

View file

@ -48,7 +48,7 @@ void main() {
});
test('Big number', () {
expect(exposurePairsFull(23), const []);
expect(exposurePairsFull(24), const []);
});
});