Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Sep 5, 2024
1 parent 80b3c99 commit 82b9516
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Verify/Verifier/VerifyEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,13 @@ public async Task ThrowIfRequired()
return;
}

var allDeletesDerified = await ProcessDeletes();
var allDeletesVerified = await ProcessDeletes();

var allNewVerified = await ProcessNew();

var allNotEqualsVerified = await ProcessNotEquals();

if (allDeletesDerified && allNewVerified && allNotEqualsVerified)
if (allDeletesVerified && allNewVerified && allNotEqualsVerified)
{
return;
}
Expand Down

0 comments on commit 82b9516

Please sign in to comment.