mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 23:10:40 +00:00
changed pickers order a bit in e2e test
This commit is contained in:
parent
d33cadc4fa
commit
e1611bba3e
1 changed files with 2 additions and 2 deletions
|
@ -43,12 +43,12 @@ void main() {
|
||||||
|
|
||||||
/// Select some initial settings according to the selected gear and film
|
/// Select some initial settings according to the selected gear and film
|
||||||
/// Then tale a photo and verify, that exposure pairs range and EV matches the selected settings
|
/// Then tale a photo and verify, that exposure pairs range and EV matches the selected settings
|
||||||
await tester.openPickerAndSelect<IsoValuePicker, IsoValue>('400');
|
|
||||||
await tester.openPickerAndSelect<EquipmentProfilePicker, EquipmentProfile>(mockEquipmentProfiles[0].name);
|
await tester.openPickerAndSelect<EquipmentProfilePicker, EquipmentProfile>(mockEquipmentProfiles[0].name);
|
||||||
await tester.openPickerAndSelect<FilmPicker, Film>(mockFilms[0].name);
|
await tester.openPickerAndSelect<FilmPicker, Film>(mockFilms[0].name);
|
||||||
expectPickerTitle<IsoValuePicker>('400');
|
await tester.openPickerAndSelect<IsoValuePicker, IsoValue>('400');
|
||||||
expectPickerTitle<EquipmentProfilePicker>(mockEquipmentProfiles[0].name);
|
expectPickerTitle<EquipmentProfilePicker>(mockEquipmentProfiles[0].name);
|
||||||
expectPickerTitle<FilmPicker>(mockFilms[0].name);
|
expectPickerTitle<FilmPicker>(mockFilms[0].name);
|
||||||
|
expectPickerTitle<IsoValuePicker>('400');
|
||||||
await tester.takePhoto();
|
await tester.takePhoto();
|
||||||
await _expectMeteringState(
|
await _expectMeteringState(
|
||||||
tester,
|
tester,
|
||||||
|
|
Loading…
Reference in a new issue