Skip to content

Commit 0a1ba05

Browse files
committed
PR feedback.
1 parent 5231b51 commit 0a1ba05

File tree

5 files changed

+9
-0
lines changed

5 files changed

+9
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Wrote 5 rows across 9 columns in %Time%
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Wrote 5 rows of length 9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Wrote 5 rows across 9 columns in %Time%
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Wrote 5 rows of length 9

test/Microsoft.ML.TestFramework/TestCommandBase.cs

+5
Original file line numberDiff line numberDiff line change
@@ -2034,8 +2034,13 @@ public void CommandTrainingBinaryFieldAwareFactorizationMachineWithValidationAnd
20342034
public void DataTypes()
20352035
{
20362036
string idvPath = GetDataPath("datatypes.idv");
2037+
OutputPath intermediateData = CreateOutputPath("intermediateDatatypes.idv");
20372038
OutputPath textOutputPath = CreateOutputPath("datatypes.txt");
20382039
TestCore("savedata", idvPath, "loader=binary", "saver=text", textOutputPath.Arg("dout"));
2040+
_step++;
2041+
TestCore("savedata", idvPath, "loader=binary", "saver=binary", intermediateData.ArgOnly("dout"));
2042+
_step++;
2043+
TestCore("savedata", intermediateData.Path, "loader=binary", "saver=text", textOutputPath.Arg("dout"));
20392044
Done();
20402045
}
20412046
}

0 commit comments

Comments
 (0)