Skip to content

Commit

Permalink
Normalizing filename
Browse files Browse the repository at this point in the history
  • Loading branch information
rkargMsft committed May 18, 2024
1 parent a654cf0 commit 1535cab
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
namespace Tester.Cassandra.Clustering;

[TestCategory("Cassandra"), TestCategory("Clustering"), TestCategory("Functional")]
public sealed class Cassandra : IClassFixture<CassandraContainer>
public sealed class CassandraClusteringTableTests : IClassFixture<CassandraContainer>
{
private readonly CassandraContainer _cassandraContainer;
private readonly ITestOutputHelper _testOutputHelper;
private static readonly string HostName = Dns.GetHostName();
private static int _generation;

public Cassandra(CassandraContainer cassandraContainer, ITestOutputHelper testOutputHelper)
public CassandraClusteringTableTests(CassandraContainer cassandraContainer, ITestOutputHelper testOutputHelper)
{
_cassandraContainer = cassandraContainer;
_cassandraContainer.Name = nameof(Cassandra);
Expand Down

0 comments on commit 1535cab

Please sign in to comment.