Skip to content

Commit

Permalink
test: fix flaky test.
Browse files Browse the repository at this point in the history
  • Loading branch information
SandPod committed Jan 15, 2024
1 parent 232700a commit 223884f
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ void main() async {
.insertRow(
session, LongImplicitIdFieldCollection(name: 'Collection'));

LongImplicitIdFieldCollection.db.attachRow
await LongImplicitIdFieldCollection.db.attachRow
.thisFieldIsExactly61CharactersLongAndIsThereforeAValidFieldNa(
session, longImplicitIdFieldCollection, longImplicitField);

Expand Down Expand Up @@ -289,7 +289,7 @@ void main() async {
var userNoteCollection = await UserNoteCollectionWithALongName.db
.insertRow(
session, UserNoteCollectionWithALongName(name: 'Collection'));
UserNoteCollectionWithALongName.db.attachRow
await UserNoteCollectionWithALongName.db.attachRow
.notes(session, userNoteCollection, userNote);

var collection = await UserNoteCollectionWithALongName.db.findById(
Expand All @@ -316,7 +316,8 @@ void main() async {
await UserNote.db.insertRow(session, UserNote(name: 'Note'));
var userNoteCollection = await UserNoteCollection.db
.insertRow(session, UserNoteCollection(name: 'Collection'));
UserNoteCollection.db.attachRow

await UserNoteCollection.db.attachRow
.userNotesPropertyName(session, userNoteCollection, userNote);

var collection = await UserNoteCollection.db.findById(
Expand Down

0 comments on commit 223884f

Please sign in to comment.