Skip to content

Commit

Permalink
Fixed test method naming
Browse files Browse the repository at this point in the history
  • Loading branch information
m3nax committed Apr 29, 2024
1 parent a410cff commit b37f235
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Dapr.Actors.Test/ActorReferenceTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Dapr.Actors
public class ActorReferenceTests
{
[Fact]
public void GetActorReference_WhenActorIsNull_ReturnsNull()
public void Get_WhenActorIsNull_ReturnsNull()
{
// Arrange
object actor = null;
Expand All @@ -22,7 +22,7 @@ public void GetActorReference_WhenActorIsNull_ReturnsNull()
}

[Fact]
public void GetActorReference_FromActorProxy_ReturnsActorReference()
public void Get_FromActorProxy_ReturnsActorReference()
{
// Arrange
var expectedActorId = new ActorId("abc");
Expand All @@ -39,7 +39,7 @@ public void GetActorReference_FromActorProxy_ReturnsActorReference()
}

[Fact]
public async Task GetActorReference_FromActorImplementation_ReturnsActorReference()
public async Task Get_FromActorImplementation_ReturnsActorReference()
{
// Arrange
var expectedActorId = new ActorId("abc");
Expand Down

0 comments on commit b37f235

Please sign in to comment.