aboutsummaryrefslogtreecommitdiff
path: root/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/CrudServiceTest.cs
diff options
context:
space:
mode:
Diffstat (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/CrudServiceTest.cs')
-rw-r--r--docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/CrudServiceTest.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/CrudServiceTest.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/CrudServiceTest.cs
index 284dbe2..ad0d34c 100644
--- a/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/CrudServiceTest.cs
+++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons.Tests/Crud/CrudServiceTest.cs
@@ -1,3 +1,4 @@
+using CrupestApi.Commons.Crud.Migrations;
using Microsoft.Extensions.Logging.Abstractions;
namespace CrupestApi.Commons.Crud.Tests;
@@ -15,7 +16,7 @@ public class CrudServiceTest
var dbConnectionFactory = new SqliteMemoryConnectionFactory();
_crudService = new CrudService<TestEntity>(
- tableInfoFactory, dbConnectionFactory, NullLoggerFactory.Instance);
+ tableInfoFactory, dbConnectionFactory, new SqliteDatabaseMigrator(), NullLoggerFactory.Instance);
}
[Fact]