making it pretty
This commit is contained in:
@@ -79,9 +79,10 @@ void main() {
|
|||||||
messageId: 'test',
|
messageId: 'test',
|
||||||
score: 2,
|
score: 2,
|
||||||
user: User(
|
user: User(
|
||||||
id: 'test',
|
id: 'test',
|
||||||
createdAt: newUserCreateTime,
|
createdAt: newUserCreateTime,
|
||||||
updatedAt: newUserCreateTime),
|
updatedAt: newUserCreateTime,
|
||||||
|
),
|
||||||
userId: 'test',
|
userId: 'test',
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -94,11 +95,13 @@ void main() {
|
|||||||
expect(newReaction.messageId, 'test');
|
expect(newReaction.messageId, 'test');
|
||||||
expect(newReaction.score, 2);
|
expect(newReaction.score, 2);
|
||||||
expect(
|
expect(
|
||||||
newReaction.user,
|
newReaction.user,
|
||||||
User(
|
User(
|
||||||
id: 'test',
|
id: 'test',
|
||||||
createdAt: newUserCreateTime,
|
createdAt: newUserCreateTime,
|
||||||
updatedAt: newUserCreateTime));
|
updatedAt: newUserCreateTime,
|
||||||
|
),
|
||||||
|
);
|
||||||
expect(newReaction.userId, 'test');
|
expect(newReaction.userId, 'test');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user