Skip to content

Commit

Permalink
fix the build
Browse files Browse the repository at this point in the history
  • Loading branch information
bbenezech committed Jan 26, 2012
1 parent 7c59e4a commit bf58b72
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions spec/integration/config/edit/rails_admin_config_edit_spec.rb
Expand Up @@ -167,7 +167,7 @@
end
end
visit new_path(:model_name => "team")
should_not have_selector('.fieldset p')
should_not have_selector('fieldset p')
end

it "should be able to display multiple help if there are multiple sections" do
Expand All @@ -185,9 +185,9 @@
end
end
visit new_path(:model_name => "team")
should have_selector(".fieldset p", :text => 'help for default')
should have_selector(".fieldset p", :text => 'help for other section')
should have_selector(".fieldset p", :count => 2)
should have_selector("fieldset p", :text => 'help for default')
should have_selector("fieldset p", :text => 'help for other section')
should have_selector("fieldset p", :count => 2)
end

it "should use the db column size for the maximum length" do
Expand Down

0 comments on commit bf58b72

Please sign in to comment.