Skip to content

Commit 3f0abc7

Browse files
committed
chore: fix merge conflicts
1 parent df89139 commit 3f0abc7

File tree

1 file changed

+0
-55
lines changed

1 file changed

+0
-55
lines changed

packages/stream_feeds_test/lib/src/helpers/test_data.dart

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -664,61 +664,6 @@ QueryCommentsResponse createDefaultQueryCommentsResponse({
664664
);
665665
}
666666

667-
FeedsReactionResponse createDefaultReactionResponse({
668-
String activityId = 'activity-id',
669-
String? commentId,
670-
String userId = 'user-id',
671-
String reactionType = 'like',
672-
}) {
673-
return FeedsReactionResponse(
674-
activityId: activityId,
675-
commentId: commentId,
676-
type: reactionType,
677-
createdAt: DateTime.timestamp(),
678-
updatedAt: DateTime.timestamp(),
679-
user: createDefaultUserResponse(id: userId),
680-
);
681-
}
682-
683-
QueryActivityReactionsResponse createDefaultQueryActivityReactionsResponse({
684-
String? next,
685-
String? prev,
686-
List<FeedsReactionResponse> reactions = const [],
687-
}) {
688-
return QueryActivityReactionsResponse(
689-
next: next,
690-
prev: prev,
691-
reactions: reactions,
692-
duration: '10ms',
693-
);
694-
}
695-
696-
QueryCommentReactionsResponse createDefaultQueryCommentReactionsResponse({
697-
String? next,
698-
String? prev,
699-
List<FeedsReactionResponse> reactions = const [],
700-
}) {
701-
return QueryCommentReactionsResponse(
702-
next: next,
703-
prev: prev,
704-
reactions: reactions,
705-
duration: '10ms',
706-
);
707-
}
708-
709-
QueryCommentsResponse createDefaultQueryCommentsResponse({
710-
String? next,
711-
String? prev,
712-
List<CommentResponse> comments = const [],
713-
}) {
714-
return QueryCommentsResponse(
715-
next: next,
716-
prev: prev,
717-
comments: comments,
718-
duration: '10ms',
719-
);
720-
}
721-
722667
FeedMemberResponse createDefaultFeedMemberResponse({
723668
String id = 'member-id',
724669
String role = 'member',

0 commit comments

Comments
 (0)