Skip to content

Commit 6660446

Browse files
Fix PR remarks
1 parent e294de7 commit 6660446

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

tests/progaudi.tarantool.tests/Index/Smoke.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public class Smoke : TestBase
1414
[Fact]
1515
public async Task HashIndexMethods()
1616
{
17-
await ClearDataAsync(new[] { "primary_only_index" });
17+
await ClearDataAsync("primary_only_index");
1818

1919
const string spaceName = "primary_only_index";
2020
using (var tarantoolClient = await Client.Box.Connect(ReplicationSourceFactory.GetReplicationSource()))
@@ -52,7 +52,7 @@ await index.Update<TarantoolTuple<int, string, double>, TarantoolTuple<int>>(
5252
[Fact]
5353
public async Task TreeIndexMethods()
5454
{
55-
await ClearDataAsync(new[] { "space_TreeIndexMethods" });
55+
await ClearDataAsync("space_TreeIndexMethods");
5656

5757
const string spaceName = "space_TreeIndexMethods";
5858
using (var tarantoolClient = await Client.Box.Connect(ReplicationSourceFactory.GetReplicationSource()))

tests/progaudi.tarantool.tests/Space/MsgPackTokenTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class MsgPackTokenTest
1717
[Fact]
1818
public async Task Smoke()
1919
{
20-
await ClearDataAsync(new[] { "with_scalar_index" });
20+
await ClearDataAsync("with_scalar_index");
2121

2222
const string spaceName = "with_scalar_index";
2323
var clientOptions = new ClientOptions(ReplicationSourceFactory.GetReplicationSource());

tests/progaudi.tarantool.tests/TestBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace ProGaudi.Tarantool.Client.Tests
66
{
77
public class TestBase
88
{
9-
public async Task ClearDataAsync(string[] spaceNames)
9+
public async Task ClearDataAsync(params string[] spaceNames)
1010
{
1111
using (var tarantoolClient = await Client.Box.Connect(ReplicationSourceFactory.GetReplicationSource("admin:adminPassword")))
1212
{

tests/progaudi.tarantool.tests/progaudi.tarantool.tests.csproj

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,5 @@
2727
<PackageReference Include="Shouldly" Version="2.8.2" />
2828
<ProjectReference Include="..\..\src\progaudi.tarantool\progaudi.tarantool.csproj" />
2929
</ItemGroup>
30-
31-
<ItemGroup>
32-
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
33-
</ItemGroup>
3430

3531
</Project>

0 commit comments

Comments
 (0)