aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers/track_controller_spec.rb
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2014-03-04 09:53:26 +0000
committerLouise Crow <louise.crow@gmail.com>2014-03-04 09:53:26 +0000
commit3912c73583464e3ff203e3e101325ccabcba0506 (patch)
tree3b57620358c4c4cfe1c52702f2979876f6452aa0 /spec/controllers/track_controller_spec.rb
parent2a49615ee3ea08f7952283efc0306a1ac0c23334 (diff)
parentaf83354da1030c2d2fad3c63f3ccb516c4923d38 (diff)
Merge branch 'release/0.17' into wdtk
Conflicts: config/general.yml-example
Diffstat (limited to 'spec/controllers/track_controller_spec.rb')
-rw-r--r--spec/controllers/track_controller_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/controllers/track_controller_spec.rb b/spec/controllers/track_controller_spec.rb
index 57d084f6b..40865d2b9 100644
--- a/spec/controllers/track_controller_spec.rb
+++ b/spec/controllers/track_controller_spec.rb
@@ -10,7 +10,7 @@ describe TrackController, "when making a new track on a request" do
:tracking_user_id= => nil)
TrackThing.stub!(:create_track_for_request).and_return(@track_thing)
TrackThing.stub!(:create_track_for_search_query).and_return(@track_thing)
- TrackThing.stub!(:find_by_existing_track).and_return(nil)
+ TrackThing.stub!(:find_existing).and_return(nil)
InfoRequest.stub!(:find_by_url_title!) do |url_title|
if url_title == "myrequest"
@ir