Added missing count increment causing Assert to never fail (#598)
This commit is contained in:
Родитель
099124028f
Коммит
6e2609f357
|
@ -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);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче