Skip to content

Commit f31925b

Browse files
committed
- reverts wrong test cases fro parameter quotes
1 parent 9f6a60e commit f31925b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/Microsoft.OpenAPI.OData.Reader.Tests/Edm/ODataOperationSegmentTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ public void GetPathItemNameReturnsCorrectActionLiteral(bool unqualifiedCall, boo
7474
}
7575

7676
[Theory]
77-
[InlineData(true, true, "MyFunction(param='{param}')")]
78-
[InlineData(true, false, "MyFunction(entity=@entity,param='{param}')")]
79-
[InlineData(false, true, "NS.MyFunction(param='{param}')")]
80-
[InlineData(false, false, "NS.MyFunction(entity=@entity,param='{param}')")]
77+
[InlineData(true, true, "MyFunction(param={param})")]
78+
[InlineData(true, false, "MyFunction(entity=@entity,param={param})")]
79+
[InlineData(false, true, "NS.MyFunction(param={param})")]
80+
[InlineData(false, false, "NS.MyFunction(entity=@entity,param={param})")]
8181
public void GetPathItemNameReturnsCorrectFunctionLiteral(bool unqualifiedCall, bool isBound, string expected)
8282
{
8383
// Arrange & Act

0 commit comments

Comments
 (0)