aboutsummaryrefslogtreecommitdiffstats
path: root/spec/controllers
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2014-03-17 17:30:34 +0000
committerLouise Crow <louise.crow@gmail.com>2014-03-24 13:07:51 +0000
commita00067262fd7171a39e74a4ebcd75a5758e12ee6 (patch)
tree1f43df2e3e4c522f4feb1b1f689843785597dfe0 /spec/controllers
parentaec70771b7029f8c312e779a6e7fa6d5537abbed (diff)
Add notices for subscribing to something.
These notices are complete sentences, not composed on the fly, so should be easier to translate.
Diffstat (limited to 'spec/controllers')
-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 7c2e1b369..d2b45b6bf 100644
--- a/spec/controllers/track_controller_spec.rb
+++ b/spec/controllers/track_controller_spec.rb
@@ -5,7 +5,7 @@ describe TrackController, "when making a new track on a request" do
@ir = mock_model(InfoRequest, :url_title => 'myrequest',
:title => 'My request')
@track_thing = mock_model(TrackThing, :save! => true,
- :params => {:list_description => 'list description'},
+ :params => {},
:track_medium= => nil,
:tracking_user_id= => nil)
TrackThing.stub!(:create_track_for_request).and_return(@track_thing)