1
0
mirror of https://github.com/aluxnimm/outlookcaldavsynchronizer.git synced 2025-10-06 00:12:52 +02:00

Set ChunkSize to 100 (if there are e.g. 21 Items on the Server and the ChunkSize is 2 or 10, then the Google Api will return null after the 20th item. Seems to be a Bug)

This commit is contained in:
Gerhard Zehetbauer
2019-04-22 19:28:27 +02:00
parent bdbfe70712
commit af878a476f

View File

@@ -99,7 +99,7 @@ namespace CalDavSynchronizer.IntegrationTests.ChunkedSynchronizationTest
}
[Test]
[TestCase(2, 7, false, Category = TestCategories.BasicCrud)]
[TestCase(100, 7, false, Category = TestCategories.BasicCrud)]
public override Task Test(int? chunkSize, int itemsPerOperation, bool useWebDavCollectionSync)
{
return base.Test(chunkSize, itemsPerOperation, useWebDavCollectionSync);