We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95b5f57 commit b316a8bCopy full SHA for b316a8b
packages/dropdown_button2/test/dropdown_button2_test.dart
@@ -129,15 +129,7 @@ void main() {
129
130
final findInkWell = find.descendant(
131
of: findDropdownButton, matching: find.byType(InkWell));
132
- expect(findInkWell, findsOneWidget);
133
-
134
- final findInkwellInputDecorator = find.descendant(
135
- of: findInkWell,
136
- matching: find.byType(InputDecorator),
137
- );
138
- final inkwellInputDecorator =
139
- tester.widget<InputDecorator>(findInkwellInputDecorator);
140
- expect(inkwellInputDecorator.decoration.errorText, null);
+ expect(findInkWell, findsNothing);
141
142
final findFormFieldInputDecorator = find.descendant(
143
of: findDropdownButtonFormField,
0 commit comments