fix tests

This commit is contained in:
Salvatore Giordano
2021-11-24 11:24:22 +01:00
parent 78145d7746
commit 4655a01a74
2 changed files with 0 additions and 3 deletions
@@ -182,8 +182,6 @@ class User extends Equatable {
List<Object?> get props => [ List<Object?> get props => [
id, id,
role, role,
createdAt,
updatedAt,
lastActive, lastActive,
online, online,
extraData, extraData,
@@ -45,7 +45,6 @@ void main() {
role: 'testRole', role: 'testRole',
createdAt: DateTime.now(), createdAt: DateTime.now(),
updatedAt: DateTime.now(), updatedAt: DateTime.now(),
lastActive: DateTime.now(),
online: math.Random().nextBool(), online: math.Random().nextBool(),
banned: math.Random().nextBool(), banned: math.Random().nextBool(),
); );