diff --git a/src/core/Akka.Tests/Actor/ActorPathSpec.cs b/src/core/Akka.Tests/Actor/ActorPathSpec.cs index d1facfdab86..acd081c6494 100644 --- a/src/core/Akka.Tests/Actor/ActorPathSpec.cs +++ b/src/core/Akka.Tests/Actor/ActorPathSpec.cs @@ -89,6 +89,17 @@ public void Supports_parsing_remote_paths() parsed.ToString().ShouldBe(remote); } + /// + /// Reproduction for https://github.com/akkadotnet/akka.net/issues/5083 + /// + [Fact] + public void Supports_parsing_remote_FQDN_paths() + { + var remote = "akka://sys@host.domain.com:1234/some/ref"; + var parsed = ActorPathParse(remote); + parsed.ToString().ShouldBe(remote); + } + [Fact] public void Return_false_upon_malformed_path() {