From 8299f48eb32eb5e64b866c966b213d311ce539c0 Mon Sep 17 00:00:00 2001 From: Simon G Date: Fri, 18 Sep 2020 15:08:42 +0200 Subject: [PATCH] - adapt test to generic table --- Test.GBase/GBaseTableIntegrationTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Test.GBase/GBaseTableIntegrationTest.cs b/Test.GBase/GBaseTableIntegrationTest.cs index 11da737..4e5a753 100644 --- a/Test.GBase/GBaseTableIntegrationTest.cs +++ b/Test.GBase/GBaseTableIntegrationTest.cs @@ -26,7 +26,7 @@ namespace Test.GBase Mock gBaseColumnFactoryMock = new Mock(); gBaseColumnFactoryMock.Setup(c => c.Create()).Returns(new GBaseColumn()); - IGBaseTable table = new GBaseTable(fileHandlerFactoryMock.Object, gBaseColumnFactoryMock.Object); + IGBaseTable table = new GBaseTable(fileHandlerFactoryMock.Object, gBaseColumnFactoryMock.Object); table.Init(typeof(Foo), nameof(Foo), "", CancellationToken.None); Foo foo = new Foo("Test");