Commit c5a7cb0e9bd8c6126afb58570d397b234c8922bf
1 parent
fe3fde20
Exists in
master
and in
1 other branch
Fix a little failing spec
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
spec/controllers/apps_controller_spec.rb
| ... | ... | @@ -254,7 +254,7 @@ describe AppsController do |
| 254 | 254 | |
| 255 | 255 | it "should show validation notice when sufficient params are not present" do |
| 256 | 256 | put :update, :id => @app.id, :app => { :issue_tracker_attributes => { |
| 257 | - :issue_tracker_type => 'pivotal', :project_id => '1234', :api_token => '123123' } } | |
| 257 | + :issue_tracker_type => 'pivotal', :project_id => '1234' } } | |
| 258 | 258 | @app.reload |
| 259 | 259 | |
| 260 | 260 | @app.issue_tracker.should be_nil | ... | ... |