File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff 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);
Original file line number Diff line number Diff 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 });
You can’t perform that action at this time.
0 commit comments