diff --git a/Test.GBase/GBaseIntegrationTest/Model.cs b/Test.GBase/GBaseIntegrationTest/Model.cs index dc8f9de..31d6e1a 100644 --- a/Test.GBase/GBaseIntegrationTest/Model.cs +++ b/Test.GBase/GBaseIntegrationTest/Model.cs @@ -45,7 +45,7 @@ namespace Test.GBase.GBaseIntegrationTest public async Task AddGroup(IGroup group, CancellationToken cancellationToken) { Groups.Add(group); - await _gBase.AddEntry(@group, cancellationToken); + await _gBase.AddEntry(group, cancellationToken); } } } \ No newline at end of file diff --git a/Test.GBase/GBaseTableIntegrationTest.cs b/Test.GBase/GBaseTableIntegrationTest.cs index 692f4d9..cf69136 100644 --- a/Test.GBase/GBaseTableIntegrationTest.cs +++ b/Test.GBase/GBaseTableIntegrationTest.cs @@ -4,7 +4,6 @@ using System.Threading; using GBase; -using GBase.DataHandling.Pool; using GBase.Factories; using GBase.FileHandling.Factories; using GBase.Interfaces;