Skip to content

Commit 8e4a87d

Browse files
author
GOEddieUK
committed
changes after feedback
1 parent ed01370 commit 8e4a87d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/csharp/Microsoft.Spark.E2ETest/IpcTests/ML/Feature/CountVectorizerModelTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public void Test_CountVectorizerModel()
3333
const double minTf = 10.0;
3434
const bool binary = false;
3535

36-
List<string> vocabulary = new List<string>()
36+
var vocabulary = new List<string>()
3737
{
3838
"hello",
3939
"I",

src/csharp/Microsoft.Spark.E2ETest/IpcTests/ML/Feature/CountVectorizerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public CountVectorizerTests(SparkFixture fixture)
3030
public void Test_CountVectorizer()
3131
{
3232
DataFrame input = _spark.Sql("SELECT array('hello', 'I', 'AM', 'a', 'string', 'TO', " +
33-
"'TOKENIZE') as input from range(100)");
33+
"'TOKENIZE') as input from range(100)");
3434

3535
const string inputColumn = "input";
3636
const string outputColumn = "output";

0 commit comments

Comments
 (0)