diff --git a/test/features/odata/crud.feature b/test/features/odata/crud.feature index ca05be5..fac0f69 100644 --- a/test/features/odata/crud.feature +++ b/test/features/odata/crud.feature @@ -117,8 +117,6 @@ Feature: crud [ { "number": 2 }, { "number": 1 } ] """ - @todo:remote - # record IDs returned Scenario: order by - full match Given we have created a new record in entity OrderBy """ @@ -132,13 +130,13 @@ Feature: crud And select its number And order by number And do perform the read - Then we expect the result to match + Then we expect the result to contain the following details """ [ { "number": 1 }, { "number": 2 } ] """ When we want to order descending by number And we read entity OrderBy by selecting number - Then we expect the result to match + Then we expect the result to contain the following details """ [ { "number": 2 }, { "number": 1 } ] """