You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previous to the time around version 0.78 or 0.79, it was possible to await Assert.That(int).IsZero(), however that has gone missing and it is required to use await Assert.That(int).IsEqualTo(0) instead.
Previous to the time around version 0.78 or 0.79, it was possible to
await Assert.That(int).IsZero(), however that has gone missing and it is required to useawait Assert.That(int).IsEqualTo(0)instead.