Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix remote query test #150

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions test/features/odata/crud.feature
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""
Expand All @@ -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 } ]
"""
Expand Down