Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ardalis committed Feb 28, 2024
1 parent 9bfa4f8 commit 4bc8632
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public async Task ReturnsConflictGivenExistPerson(string route)
var problemDetails = JsonConvert.DeserializeObject<ProblemDetails>(stringResponse);

Assert.Contains("There was a conflict.", problemDetails.Title);
Assert.Contains("Next error(s) occured:* Person (John Smith) is exist", problemDetails.Detail);
Assert.Contains("Next error(s) occurred:* Person (John Smith) is exist", problemDetails.Detail);
Assert.Equal(409, problemDetails.Status);
}
}

0 comments on commit 4bc8632

Please sign in to comment.