You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.Equal("Training data and validation data schemas do not match. Train data has '2' columns,and validation data has '1' columns."+Environment.NewLine+"Parameter name: validationData",ex.Message);
87
+
Assert.StartsWith("Training data and validation data schemas do not match. Train data has '2' columns,and validation data has '1' columns.",ex.Message);
88
88
}
89
89
90
90
[Fact]
@@ -104,7 +104,7 @@ public void ValidateExperimentExecuteArgsTrainValidColNamesMismatch()
Assert.Equal("Training data and validation data schemas do not match. Column '1' exsits in train data, but not in validation data."+Environment.NewLine+"Parameter name: validationData",ex.Message);
107
+
Assert.StartsWith("Training data and validation data schemas do not match. Column '1' exsits in train data, but not in validation data.",ex.Message);
108
108
}
109
109
110
110
[Fact]
@@ -124,21 +124,21 @@ public void ValidateExperimentExecuteArgsTrainValidColTypeMismatch()
Assert.Equal("Training data and validation data schemas do not match. Column '1' is of type String in train data, and type Single in validation data."+Environment.NewLine+"Parameter name: validationData",ex.Message);
127
+
Assert.StartsWith("Training data and validation data schemas do not match. Column '1' is of type String in train data, and type Single in validation data.",ex.Message);
Assert.Equal("Only supported feature column types are Boolean, Single, and String. Please change the feature column UInt64 of type UInt64 to one of the supported types."+Environment.NewLine+"Parameter name: trainData",ex.Message);
239
+
Assert.StartsWith("Only supported feature column types are Boolean, Single, and String. Please change the feature column UInt64 of type UInt64 to one of the supported types.",ex.Message);
240
240
}
241
241
242
242
[Fact]
@@ -249,7 +249,7 @@ public void ValidateEmptyTrainingDataThrows()
0 commit comments