fix(Mock): rename Fake

This commit is contained in:
2025-08-29 12:53:03 +02:00
parent baf2207d03
commit ac501dffb1
3 changed files with 6 additions and 5 deletions

View File

@@ -7,12 +7,12 @@ namespace EnvelopeGenerator.Tests.Application;
[TestFixture]
public class HistoryTests
{
private Mock.Host _host;
private Fake.Host _host;
[SetUp]
public async Task Setup()
{
_host = Mock.CreateHost();
_host = Fake.CreateHost();
await _host.AddSampleReceivers();
}