Skip to content

Commit 85c4711

Browse files
authored
Follow code-guideline for var (#425)
1 parent f740e07 commit 85c4711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/csharp/Microsoft.Spark.Worker.UnitTest/TaskRunnerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public void TestTaskRunner()
3636

3737
payloadWriter.WriteTestData(outputStream);
3838
// Now process the bytes flowing in from the client.
39-
var rowsReceived = PayloadReader.Read(inputStream);
39+
List<object[]> rowsReceived = PayloadReader.Read(inputStream);
4040

4141
// Validate rows received.
4242
Assert.Equal(10, rowsReceived.Count);

0 commit comments

Comments
 (0)