Commit 9f350434e2533975aa97a0179d9cbcb2a9fd052d

Authored by Antonio Terceiro
2 parents 85f53985 9d4d8338

Merge branch 'environment_notification' into 'master'

environment_notification: Fix selenium test

Signed-off-by: Alexandre Barbosa <alexandreab@live.com>
Signed-off-by: Rodrigo Siqueira <siqueira@kuniri.org>
Signed-off-by: Daniela Soares Feitosa <danielafeitosa@colivre.coop.br>

See merge request !770
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
features/step_definitions/tiny_mce_steps.rb
1 1 Then /^The tinymce "(.+)" should be "(.+)"$/ do |item, content|
2 2 item_value = page.evaluate_script("tinyMCE.activeEditor.getParam('#{item}');")
3   - assert_equal item_value.to_s, content
  3 + item_value.to_s.should == content
4 4 end
5 5  
6 6 Then /^The tinymce "(.+)" should contain "(.+)"$/ do |item, content|
... ...