summaryrefslogtreecommitdiff
path: root/test/controllers/alerts_controller_test.rb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-02-20 17:13:51 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-02-20 17:13:51 -0500
commitcd1fabe40ca4d290df33a2590f3a1f2072103972 (patch)
tree98afd236e1d14e892602304e739fc65d450a43fd /test/controllers/alerts_controller_test.rb
parentc14d0327a631a4321464c7c1e250d75458e13f49 (diff)
fix datatype names in generate.sh
Diffstat (limited to 'test/controllers/alerts_controller_test.rb')
-rw-r--r--test/controllers/alerts_controller_test.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/controllers/alerts_controller_test.rb b/test/controllers/alerts_controller_test.rb
index 29e58e9..4a5d911 100644
--- a/test/controllers/alerts_controller_test.rb
+++ b/test/controllers/alerts_controller_test.rb
@@ -18,7 +18,7 @@ class AlertsControllerTest < ActionController::TestCase
test "should create alert" do
assert_difference('Alert.count') do
- post :create, alert: { author: @alert.author, message: @alert.message }
+ post :create, alert: { author_id: @alert.author_id, message: @alert.message }
end
assert_redirected_to alert_path(assigns(:alert))
@@ -35,7 +35,7 @@ class AlertsControllerTest < ActionController::TestCase
end
test "should update alert" do
- patch :update, id: @alert, alert: { author: @alert.author, message: @alert.message }
+ patch :update, id: @alert, alert: { author_id: @alert.author_id, message: @alert.message }
assert_redirected_to alert_path(assigns(:alert))
end