Skip to content

Commit

Permalink
Merge pull request akkadotnet#2298 from Aaronontheweb/resizer-spec-skip
Browse files Browse the repository at this point in the history
skip flaky Resizer specs
  • Loading branch information
Horusiath authored Sep 7, 2016
2 parents ab0c81d + 520cad0 commit 62cbc56
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/Akka.Tests/Routing/ResizerSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public void DefaultResizer_must_be_possible_to_define_in_configuration()
RouteeSize(router).Should().Be(2);
}

[Fact]
[Fact(Skip = "Racy due to Resizer / Mailbox impl")]
public void DefaultResizer_must_grow_as_needed_under_pressure()
{
var resizer = new DefaultResizer(
Expand Down Expand Up @@ -265,7 +265,7 @@ public void DefaultResizer_must_grow_as_needed_under_pressure()
RouteeSize(router).Should().Be(resizer.UpperBound);
}

[Fact]
[Fact(Skip = "Racy due to Resizer / Mailbox impl")]
public void DefaultResizer_must_backoff()
{
Within(10.Seconds(), () =>
Expand Down

0 comments on commit 62cbc56

Please sign in to comment.