Skip to content

Commit

Permalink
RavenDB-5451 missing assertion in configuration test (#4564)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppekrol committed Oct 11, 2016
1 parent 8db7480 commit 1f6cc49
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Raven.Tests.Core/Configuration/ConfigurationTests.cs
Expand Up @@ -324,6 +324,7 @@ public void DefaultInMemoryRavenConfigurationShouldBeInitializedCorrectly()
configurationComparer.Assert(expected => expected.MinThreadPoolWorkerThreads.Value, actual => actual.MinThreadPoolWorkerThreads);
configurationComparer.Assert(expected => expected.MinThreadPoolCompletionThreads.Value, actual => actual.MinThreadPoolCompletionThreads);

configurationComparer.Assert(expected => expected.SqlReplication.CommandTimeoutInSec.Value, actual => actual.SqlReplication.CommandTimeoutInSec);

configurationComparer.Assert(expected => expected.Cluster.HeartbeatTimeout.Value, actual => actual.Cluster.HeartbeatTimeout);
configurationComparer.Assert(expected => expected.Cluster.ElectionTimeout.Value, actual => actual.Cluster.ElectionTimeout);
Expand Down

0 comments on commit 1f6cc49

Please sign in to comment.