Skip to content

Commit e236e9b

Browse files
committed
style: misc
1 parent 18329ba commit e236e9b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

test/src/models/feed_decorators/engagement_content_test.dart

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,7 @@ void main() {
262262
callToActionUrl: 'hasurl.com',
263263
);
264264

265-
final copied = original.copyWith(
266-
267-
);
265+
final copied = original.copyWith();
268266

269267
expect(copied.description, isNull);
270268
expect(copied.callToActionText, isNull);

test/src/models/feed_extras/engagement_content_template_test.dart

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,10 @@ void main() {
8080
final instance = EngagementContentTemplate.fromJson(json);
8181

8282
expect(instance.type, EngagementTemplateType.linkAccount);
83-
expect(instance.title,
84-
'Link Your Account Now',); // Expect the provided title
83+
expect(
84+
instance.title,
85+
'Link Your Account Now',
86+
); // Expect the provided title
8587
expect(instance.description, isNull);
8688
expect(instance.callToActionText, isNull);
8789
});

0 commit comments

Comments
 (0)