Skip to content

Commit c68209e

Browse files
committed
Fixed test method naming
Signed-off-by: Manuel Menegazzo <[email protected]>
1 parent 8790aab commit c68209e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/Dapr.Actors.Test/ActorReferenceTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace Dapr.Actors
99
public class ActorReferenceTests
1010
{
1111
[Fact]
12-
public void GetActorReference_WhenActorIsNull_ReturnsNull()
12+
public void Get_WhenActorIsNull_ReturnsNull()
1313
{
1414
// Arrange
1515
object actor = null;
@@ -22,7 +22,7 @@ public void GetActorReference_WhenActorIsNull_ReturnsNull()
2222
}
2323

2424
[Fact]
25-
public void GetActorReference_FromActorProxy_ReturnsActorReference()
25+
public void Get_FromActorProxy_ReturnsActorReference()
2626
{
2727
// Arrange
2828
var expectedActorId = new ActorId("abc");
@@ -39,7 +39,7 @@ public void GetActorReference_FromActorProxy_ReturnsActorReference()
3939
}
4040

4141
[Fact]
42-
public async Task GetActorReference_FromActorImplementation_ReturnsActorReference()
42+
public async Task Get_FromActorImplementation_ReturnsActorReference()
4343
{
4444
// Arrange
4545
var expectedActorId = new ActorId("abc");

0 commit comments

Comments
 (0)