Skip to content

Commit

Permalink
Fix broken illegal actor name unit test (#6942)
Browse files Browse the repository at this point in the history
  • Loading branch information
Arkatufus authored Oct 3, 2023
1 parent 9bf14af commit b76c761
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka.Tests/Actor/LocalActorRefProviderSpec.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ await EventFilter.Exception<InvalidActorNameException>(message: "Actor name \"du
[InlineData("%","Illegal actor name")]
[InlineData("%1t","Illegal actor name")]
[InlineData("a?","Illegal actor name")]
[InlineData("üß","include only ASCII")]
[InlineData("üß","only contain ASCII")]
[InlineData("åäö", "Illegal actor name")]
public void An_ActorRefFactory_must_throw_suitable_exceptions_for_malformed_actor_names(string name, string expectedExceptionMessageSubstring)
{
Expand Down

0 comments on commit b76c761

Please sign in to comment.