Skip to content

Commit 901a98f

Browse files
committed
Apply suggestions from code review
1 parent 6462287 commit 901a98f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/Microsoft.Data.Analysis.Tests/DataFrame.IOTests.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,11 +1023,11 @@ public void TestMixedDataTypesInCsv()
10231023

10241024
public readonly struct LoadCsvVerifyingHelper
10251025
{
1026-
int _columnCount;
1027-
long _rowCount;
1028-
string[] _columnNames;
1029-
Type[] _columnTypes;
1030-
object[][] _cells;
1026+
private readonly int _columnCount;
1027+
private readonly long _rowCount;
1028+
private readonly string[] _columnNames;
1029+
private readonly Type[] _columnTypes;
1030+
private readonly object[][] _cells;
10311031

10321032
public LoadCsvVerifyingHelper(int columnCount, long rowCount, string[] columnNames, Type[] columnTypes, object[][] cells)
10331033
{

0 commit comments

Comments
 (0)