Skip to content

Commit 58d213a

Browse files
committed
Fix failing bulk url test
1 parent c508708 commit 58d213a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/Tests/Document/Multiple/Bulk/BulkUrlTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ public class BulkUrlTests : IUrlTests
1111
[U] public async Task Urls()
1212
{
1313
await POST("/_bulk")
14-
.Fluent(c => c.Bulk())
14+
.Fluent(c => c.Bulk(b=>b))
1515
.Request(c => c.Bulk(new BulkRequest()))
16-
.FluentAsync(c => c.BulkAsync())
16+
.FluentAsync(c => c.BulkAsync(b=>b))
1717
.RequestAsync(c => c.BulkAsync(new BulkRequest()))
1818
;
1919

0 commit comments

Comments
 (0)