summaryrefslogtreecommitdiff
path: root/test/controllers/rss_controller_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/controllers/rss_controller_test.rb')
-rw-r--r--test/controllers/rss_controller_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/controllers/rss_controller_test.rb b/test/controllers/rss_controller_test.rb
index 7e28844..3f4b4fb 100644
--- a/test/controllers/rss_controller_test.rb
+++ b/test/controllers/rss_controller_test.rb
@@ -6,7 +6,7 @@ class RssControllerTest < ActionController::TestCase
6 @user = User.create :login => 'rsstest', :email => 'rsstest@example.com', 6 @user = User.create :login => 'rsstest', :email => 'rsstest@example.com',
7 :password => 'foobar', :password_confirmation => 'foobar' 7 :password => 'foobar', :password_confirmation => 'foobar'
8 @node = Node.root.children.create! :slug => 'rss_test_node' 8 @node = Node.root.children.create! :slug => 'rss_test_node'
9 draft = @node.find_or_create_draft @user 9 draft = find_or_create_draft(@node, @user)
10 draft.title = "RSS Update Article" 10 draft.title = "RSS Update Article"
11 draft.tag_list = "update" 11 draft.tag_list = "update"
12 draft.save 12 draft.save