Skip to content

Commit

Permalink
Changed visibility modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Emil Koutanov committed Jan 29, 2024
1 parent 0109259 commit ef30877
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Actors.Tests/ErrorTrappingActor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ namespace Actors.Tests;

public abstract class ErrorTrappingActor<M> : Actor<M>
{
public Exception? Exception { get; set; }
public Exception? Exception { get; private set; }

protected override void OnError(Exception e)
{
Expand Down
1 change: 1 addition & 0 deletions Actors.Tests/TroupeTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ public async Task TestDrainAny()

actors.AssertNoError();
}

[TestMethod]
public async Task TestDrainAll()
{
Expand Down

0 comments on commit ef30877

Please sign in to comment.