Skip to content

Commit

Permalink
fix: Morve comment to right test class
Browse files Browse the repository at this point in the history
  • Loading branch information
HofmeisterAn committed Aug 28, 2024
1 parent 5d7f5fe commit 213f3c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/Testcontainers.MongoDb.Tests/MongoDbContainerTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public MongoDbV5Configuration()
public sealed class MongoDbV4Configuration : MongoDbContainerTest
{
public MongoDbV4Configuration()
: base(new MongoDbBuilder().WithImage("mongo:4.4").Build(), true)
: base(new MongoDbBuilder().WithImage("mongo:4.4").Build(), true /* Replica set status returns "ok" in MongoDB 4.4 without initialization. */)
{
}
}
Expand All @@ -116,7 +116,7 @@ public MongoDbV4Configuration()
public sealed class MongoDbReplicaSetDefaultConfiguration : MongoDbContainerTest
{
public MongoDbReplicaSetDefaultConfiguration()
: base(new MongoDbBuilder().WithReplicaSet().Build(), true /* Replica set status returns "ok" in MongoDB 4.4 without initialization. */)
: base(new MongoDbBuilder().WithReplicaSet().Build(), true)
{
}
}
Expand Down

0 comments on commit 213f3c4

Please sign in to comment.