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");