Skip to content

Commit

Permalink
test: fixed debug fill props avatar
Browse files Browse the repository at this point in the history
  • Loading branch information
DE7924 committed Nov 18, 2024
1 parent cdd5333 commit ca8cd53
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/src/components/avatar/avatar_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void main() {
});

group('Accessibility Tests', () {
testWidgets('ZetaAvatar meets accessibility requirements', (WidgetTester tester) async {
testWidgets('ZetaAvatar meets accessibility requirements', (WidgetTester tester) async {
final SemanticsHandle handle = tester.ensureSemantics();
await tester.pumpWidget(
const TestApp(
Expand Down Expand Up @@ -52,9 +52,9 @@ void main() {
'lowerBadge': 'null',
'backgroundColor': 'null',
'statusColor': 'null',
'semanticUpperBadgeValue': '"upperBadge"',
'semanticValue': '"avatar"',
'semanticLowerBadgeValue': '"lowerBadge"',
'semanticUpperBadgeValue': 'null',
'semanticValue': 'null',
'semanticLowerBadgeValue': 'null',
'initialTextStyle': 'null',
};
debugFillPropertiesTest(
Expand Down

0 comments on commit ca8cd53

Please sign in to comment.