Skip to content

Commit bfec1a5

Browse files
committed
fix: flakey test
1 parent 1c1c9db commit bfec1a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

QueryKit.IntegrationTests/Tests/DatabaseFilteringTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ public async Task can_filter_by_timeonly_without_micros()
144144
var people = await appliedQueryable.ToListAsync();
145145

146146
// Assert
147-
people.Count.Should().Be(1);
148-
people[0].Id.Should().Be(fakePersonOne.Id);
147+
people.Count.Should().BeGreaterOrEqualTo(1);
148+
people.FirstOrDefault(x => x.Id == fakePersonOne.Id).Should().NotBeNull();
149149
}
150150

151151

0 commit comments

Comments
 (0)