From 3b1fd756c0c6fd707892064036a1410412b4fb23 Mon Sep 17 00:00:00 2001 From: Vladislav Leonkev Date: Tue, 10 Oct 2023 14:36:31 +0200 Subject: [PATCH] fix odata remote test - IDs returned only in remote odata --- test/features/odata/crud.feature | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 } ] """