Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Tiegges <[email protected]>
  • Loading branch information
jantiegges committed Jan 23, 2023
1 parent 44ba09e commit 54d3f51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ private void GetCompanies_ShouldReturnAllCompanies()

// assert
Assert.That(1 == companies.Count());
Assert.That(companyID == companies.First().CompanyId);
Assert.That(companyID.ToString() == companies.First().CompanyId);
Assert.That(companyName == companies.First().CompanyName);

// cleanup
db.Database.EnsureDeleted();
}
}
}

0 comments on commit 54d3f51

Please sign in to comment.