Skip to content

Commit

Permalink
Lower iterations of knows to pass tests. These tests did not failed o…
Browse files Browse the repository at this point in the history
…n test runner in a while.
  • Loading branch information
Fitzchak Yitzchaki committed May 22, 2012
1 parent e641182 commit 402cbd5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Raven.StressTests/Races/BundelsRaceConditions.cs
Expand Up @@ -28,7 +28,7 @@ public void FailoverBetweenTwoMultiTenantDatabases_CanFailoverReplicationBetween
[Fact]
public void SimpleLogin()
{
Run<SimpleLogin>(x => x.WillGetAnErrorWhenTryingToLoginIfUserDoesNotExists());
Run<SimpleLogin>(x => x.WillGetAnErrorWhenTryingToLoginIfUserDoesNotExists(), 40);
}

[Fact]
Expand Down
4 changes: 2 additions & 2 deletions Raven.StressTests/Races/ShardsRaces.cs
Expand Up @@ -8,13 +8,13 @@ public class ShardsRaces : StressTest
[Fact]
public void CanQueryOnlyUsers_WhenStoringUser()
{
Run<CanQueryOnlyUsers>(x => x.WhenStoringUser());
Run<CanQueryOnlyUsers>(x => x.WhenStoringUser(), 100);
}

[Fact]
public void CanQueryOnlyUsers_WhenQueryingForUserById()
{
Run<CanQueryOnlyUsers>(x => x.WhenQueryingForUserById());
Run<CanQueryOnlyUsers>(x => x.WhenQueryingForUserById(), 100);
}
}
}
2 changes: 1 addition & 1 deletion Raven.StressTests/Races/Tobi.cs
Expand Up @@ -9,7 +9,7 @@ public class Tobi : StressTest
[Fact]
public void LazyMultiLoadOperationWouldBeInTheSession_WithNonStaleResponse()
{
Run<MultiGetQueries>(x => x.LazyMultiLoadOperationWouldBeInTheSession_WithNonStaleResponse());
Run<MultiGetQueries>(x => x.LazyMultiLoadOperationWouldBeInTheSession_WithNonStaleResponse(), 100);
}

[Fact]
Expand Down

0 comments on commit 402cbd5

Please sign in to comment.