Skip to content

Commit ad49e25

Browse files
committed
Update distance value in filter test
1 parent 20f2372 commit ad49e25

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/Weaviate.Client.Tests/Integration/TestCollectionAggregate.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ public static IEnumerable<object[]> NearTextAggregationOptions()
334334
};
335335
yield return new object[]
336336
{
337-
new Dictionary<string, object> { { "distance", 0.75 } },
337+
new Dictionary<string, object> { { "distance", 0.66 } },
338338
1,
339339
uuid1,
340340
uuid2,
@@ -430,6 +430,7 @@ Guid uuid2
430430
await collectionClient.Data.Insert(new { text = text1 }, id: uuid1);
431431
await collectionClient.Data.Insert(new { text = text2 }, id: uuid2);
432432
Assert.Equal(2UL, await collectionClient.Count());
433+
433434
// Act
434435
AggregateResult? res = null;
435436
var metrics = new[]

0 commit comments

Comments
 (0)