Skip to content

Commit

Permalink
Update test
Browse files Browse the repository at this point in the history
  • Loading branch information
elliette committed Jan 23, 2025
1 parent a929f3f commit 7c66562
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -224,17 +224,17 @@ void main() {
await _verifyDropdownMenuItems(
alignInput,
menuOptions: [
'Alignment.bottomCenter',
'Alignment.bottomLeft',
'Alignment.bottomRight',
'Alignment.center',
'Alignment.centerLeft',
'Alignment.centerRight',
'Alignment.topCenter',
'Alignment.topLeft',
'Alignment.topRight',
'.bottomCenter',
'.bottomLeft',
'.bottomRight',
'.center',
'.centerLeft',
'.centerRight',
'.topCenter',
'.topLeft',
'.topRight',
],
selectedOption: 'Alignment.center',
selectedOption: '.center',
tester: tester,
);
});
Expand Down Expand Up @@ -368,8 +368,8 @@ void main() {
final alignInput = _findDropdownButtonFormField('align');
await _selectDropdownMenuItem(
alignInput,
optionToSelect: 'Alignment.topLeft',
currentlySelected: 'Alignment.center',
optionToSelect: '.topLeft',
currentlySelected: '.center',
tester: tester,
);

Expand All @@ -390,7 +390,7 @@ void main() {
await _selectDropdownMenuItem(
alignInput,
optionToSelect: 'null',
currentlySelected: 'Alignment.center',
currentlySelected: '.center',
tester: tester,
);

Expand Down

0 comments on commit 7c66562

Please sign in to comment.