Skip to content

Commit ea5eb96

Browse files
fix compiler error in unrelated code
1 parent a5651f8 commit ea5eb96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Grpc.IntegrationTests/OrchestrationPatterns.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public async Task ActivityFanOut()
329329
Assert.Equal(OrchestrationRuntimeStatus.Completed, metadata.RuntimeStatus);
330330

331331
string[] expected = new[] { "9", "8", "7", "6", "5", "4", "3", "2", "1", "0" };
332-
Assert.Equal<string>(expected, metadata.ReadOutputAs<string[]>());
332+
Assert.Equal(expected, metadata.ReadOutputAs<string[]>());
333333
}
334334

335335
[Theory]

0 commit comments

Comments
 (0)