Skip to content

Commit

Permalink
[ci] Fix failing request list test
Browse files Browse the repository at this point in the history
Because due using data tables introduced in b9ed64b
the requests are now ordered by timestamp.
Request 1000 is now the second request in the list and not the first one anymore.
  • Loading branch information
ChrisBr committed Mar 10, 2017
1 parent 9b5c3c8 commit b15f349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/test/functional/webui/request_controller_test.rb
Expand Up @@ -307,7 +307,7 @@ def test_going_through_request_list

visit project_requests_path(project: "Apache")
page.must_have_text "Requests for Apache"
find_all("a.request_link", count: 4).first.click
find_all("a.request_link", count: 4)[1].click

assert_equal "/request/show/1000", page.current_path
# start of list
Expand Down

0 comments on commit b15f349

Please sign in to comment.