Skip to content

Commit

Permalink
fix submission flow system tests after changing their display
Browse files Browse the repository at this point in the history
  • Loading branch information
syphax-bouazzouni committed Jul 16, 2024
1 parent 0ea37e9 commit a6a20d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/system/submission_flows_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class SubmissionFlowsTest < ApplicationSystemTestCase
assert_selector '.alert-message', text: "The ontology is processing."

@new_ontology.hasDomain.each do |cat|
assert_text cat.name
assert_text cat.acronym.titleize
end


Expand Down Expand Up @@ -143,7 +143,7 @@ class SubmissionFlowsTest < ApplicationSystemTestCase
assert_text "#{ontology_2.name} (#{@new_ontology.acronym})"

selected_categories.each do |cat|
assert_text cat.name
assert_text cat.acronym.titleize
end

assert_text submission_2.URI
Expand Down Expand Up @@ -349,7 +349,7 @@ class SubmissionFlowsTest < ApplicationSystemTestCase
assert_selector '.alert-message', text: "The ontology is processing."

ontology_2.hasDomain.each do |cat|
assert_text cat.name
assert_text cat.acronym.titleize
end

refute_text 'Version IRI'
Expand Down

0 comments on commit a6a20d0

Please sign in to comment.