Skip to content

Commit

Permalink
fix: swapped the parameter placement in the expect function so that i…
Browse files Browse the repository at this point in the history
…t makes more sense
  • Loading branch information
Suman085 committed May 31, 2024
1 parent dc174c2 commit f993198
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/phone_form_field_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ void main() {
await tester.pumpAndSettle();
expect(find.byType(CountrySelectorPage), findsOneWidget);
await tester.tap(find.byType(ListTile).first);
expect(true, changed);
expect(changed, equals(true));
expect(
phoneNumber,
equals(PhoneNumber.parse('', destinationCountry: IsoCode.AF)),
Expand Down

0 comments on commit f993198

Please sign in to comment.