Skip to content

Commit fde25bf

Browse files
committed
Cleanup
1 parent c955bc8 commit fde25bf

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

test/WorkflowCore.Tests.Elasticsearch/ElasticsearchDockerSetup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ public Task DisposeAsync()
3131
public class ElasticsearchCollection : ICollectionFixture<ElasticsearchDockerSetup>
3232
{
3333
}
34-
}
34+
}

test/WorkflowCore.Tests.MongoDB/MongoDockerSetup.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using Xunit;
66

77
namespace WorkflowCore.Tests.MongoDB
8-
{
8+
{
99
public class MongoDockerSetup : IAsyncLifetime
1010
{
1111
private readonly MongoResource _mongoResource;
@@ -15,7 +15,7 @@ public MongoDockerSetup()
1515
{
1616
_mongoResource = new MongoResource();
1717
}
18-
18+
1919
public async Task InitializeAsync()
2020
{
2121
await _mongoResource.InitializeAsync();
@@ -33,6 +33,6 @@ public Task DisposeAsync()
3333

3434
[CollectionDefinition("Mongo collection")]
3535
public class MongoCollection : ICollectionFixture<MongoDockerSetup>
36-
{
36+
{
3737
}
38-
}
38+
}

test/WorkflowCore.Tests.MySQL/DockerSetup.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public MysqlDockerSetup()
1515
{
1616
_mySqlResource = new MySqlResource();
1717
}
18-
18+
1919
public async Task InitializeAsync()
2020
{
2121
await _mySqlResource.InitializeAsync();
@@ -33,4 +33,4 @@ public Task DisposeAsync()
3333
public class MysqlCollection : ICollectionFixture<MysqlDockerSetup>
3434
{
3535
}
36-
}
36+
}

test/WorkflowCore.Tests.PostgreSQL/DockerSetup.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public PostgresDockerSetup()
1616
AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true);
1717
_postgreSqlResource = new PostgreSqlResource();
1818
}
19-
19+
2020
public async Task InitializeAsync()
2121
{
2222
await _postgreSqlResource.InitializeAsync();
@@ -29,9 +29,9 @@ public Task DisposeAsync()
2929
return _postgreSqlResource.DisposeAsync();
3030
}
3131
}
32-
32+
3333
[CollectionDefinition("Postgres collection")]
3434
public class PostgresCollection : ICollectionFixture<PostgresDockerSetup>
35-
{
35+
{
3636
}
37-
}
37+
}

test/WorkflowCore.Tests.Redis/RedisDockerSetup.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
using Xunit;
55

66
namespace WorkflowCore.Tests.Redis
7-
{
7+
{
88
public class RedisDockerSetup : IAsyncLifetime
99
{
1010
private readonly RedisResource _redisResource;
@@ -29,6 +29,6 @@ public Task DisposeAsync()
2929

3030
[CollectionDefinition("Redis collection")]
3131
public class RedisCollection : ICollectionFixture<RedisDockerSetup>
32-
{
32+
{
3333
}
34-
}
34+
}

test/WorkflowCore.Tests.SqlServer/DockerSetup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@ public Task DisposeAsync()
3131

3232
[CollectionDefinition("SqlServer collection")]
3333
public class SqlServerCollection : ICollectionFixture<SqlDockerSetup>
34-
{
34+
{
3535
}
3636
}

0 commit comments

Comments
 (0)