Added missing count increment causing Assert to never fail (#598)

This commit is contained in:
JamesHyot 2019-07-25 19:56:39 +02:00 коммит произвёл kirankumarkolli
Родитель 099124028f
Коммит 6e2609f357
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -107,6 +107,7 @@
int count = 0;
foreach (Family item in await setIterator.ReadNextAsync())
{
count++;
Assert("Should only return 1 result at a time.", count <= 1);
families.Add(item);
}