Skip to content

Commit 4694bc9

Browse files
committed
Build fix.
1 parent 0bafb5e commit 4694bc9

File tree

2 files changed

+157
-157
lines changed

2 files changed

+157
-157
lines changed

csharp/Platform.RegularExpressions.Transformer.CSharpToCpp.Tests/CSharpToCppTransformerTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public void EmptyLineTest()
99
{
1010
// This test can help to test basic problems with regular expressions like incorrect syntax
1111
var transformer = new CSharpToCppTransformer();
12-
var actualResult = transformer.Transform("", new Context(null));
12+
var actualResult = transformer.Transform("");
1313
Assert.Equal("", actualResult);
1414
}
1515

@@ -32,7 +32,7 @@ public static void Main(string[] args)
3232
}
3333
};";
3434
var transformer = new CSharpToCppTransformer();
35-
var actualResult = transformer.Transform(helloWorldCode, new Context(null));
35+
var actualResult = transformer.Transform(helloWorldCode);
3636
Assert.Equal(expectedResult, actualResult);
3737
}
3838
}

0 commit comments

Comments
 (0)