Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmartos96 committed Jun 13, 2024
1 parent 3a9409e commit 0234f9e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ void main() async {

await db.into(db.extra).insert(
ExtraCompanion.insert(
id: 1,
id: const Value(1),
int8BigInt: Value(bigInt),
),
);
Expand Down
2 changes: 1 addition & 1 deletion packages/electricsql/test/client/model/datatype.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ Future<DartT> _insertAndFetchFromExtra<DartT extends Object>(
required DialectAwareSqlType<DartT>? customT,
}) async {
final baseCompanion = ExtraCompanion.insert(
id: 77,
id: const Value(77),
);

final insertCompanion = insertCol(baseCompanion, value);
Expand Down
1 change: 0 additions & 1 deletion packages/electricsql/test/util/versions_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ Future<void> main() async {
reason:
'Version in pubspec.yaml $version does not match the client version constant $kElectricClientVersion',
);

});
}

Expand Down

0 comments on commit 0234f9e

Please sign in to comment.