Skip to content

Commit 70724b5

Browse files
committed
Fix failing test by updating operation id
1 parent 9858a80 commit 70724b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/Microsoft.OpenApi.Hidi.Tests/Services/OpenApiServiceTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public async Task ReturnConvertedCSDLFile()
3030
}
3131

3232
[Theory]
33-
[InlineData("Todos.Todo.UpdateTodo",null, 1)]
34-
[InlineData("Todos.Todo.ListTodo",null, 1)]
33+
[InlineData("Todos.Todo.UpdateTodoById", null, 1)]
34+
[InlineData("Todos.Todo.ListTodo", null, 1)]
3535
[InlineData(null, "Todos.Todo", 4)]
3636
public async Task ReturnFilteredOpenApiDocBasedOnOperationIdsAndInputCsdlDocument(string operationIds, string tags, int expectedPathCount)
3737
{

0 commit comments

Comments
 (0)