Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Koutanov committed Jan 28, 2024
1 parent 3f58aa5 commit c0acb7f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Actors.Tests/TroupeTest.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace Actors.Tests;

static class IEnumerableExtensions
static class PausingActorExtensions
{
public static void AssertNoError(this PausingActor[] actors)
{
Expand Down Expand Up @@ -86,7 +86,7 @@ public async Task TestDrainAll()
m1.Resume.SetResult();
await drain;
Assert.IsFalse(actors[1].Scheduled);

actors.AssertNoError();
}
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class Printer : Actor<char>
}
}

// calling the actor
var printer = new Printer();
foreach (var ch in "Hello World\n")
{
Expand Down

0 comments on commit c0acb7f

Please sign in to comment.