changed pickers order a bit in e2e test

This commit is contained in:
Vadim 2024-03-11 22:20:10 +01:00
parent d33cadc4fa
commit e1611bba3e

View file

@ -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,