Skip to content

Commit

Permalink
Merge pull request #198 from openSUSE/hellcp-work-skip-tests
Browse files Browse the repository at this point in the history
Skip tests that don't do anything
  • Loading branch information
hellcp-work committed Jan 30, 2023
2 parents 1d305cb + 677373d commit 49668c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/support/common_helpers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def find_request_as(user, request, opts = {})
page.should have_content 'request'
request.expenses.each do |e|
page.should have_content e.subject
page.should have_content e.description
page.should have_content e.description unless e.description.nil?
end
end

Expand Down Expand Up @@ -105,7 +105,7 @@ def find_reimbursement_as(user, reimbursement, opts = {})
page.should have_content 'reimbursement'
reimbursement.expenses.each do |e|
page.should have_content e.subject
page.should have_content e.description
page.should have_content e.description unless e.description.nil?
end
end

Expand Down

0 comments on commit 49668c0

Please sign in to comment.