diff options
author | Yves Senn <yves.senn@gmail.com> | 2014-11-07 11:54:08 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2014-11-07 11:54:08 +0100 |
commit | a450cac35e29cd810c8daef698478b99d14b9206 (patch) | |
tree | d67858d0ebec8690311a530a9c27dda6bf8fbdfc /guides | |
parent | 92534179096b9b4838bbaee343bba1127095f5e6 (diff) | |
parent | 5bdaf31628fdfd4000a2cd3a430dbce8127b863e (diff) | |
download | rails-a450cac35e29cd810c8daef698478b99d14b9206.tar.gz rails-a450cac35e29cd810c8daef698478b99d14b9206.tar.bz2 rails-a450cac35e29cd810c8daef698478b99d14b9206.zip |
Merge pull request #17552 from jipe/master
Guides: Corrected name for assigns key [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/testing.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/testing.md b/guides/source/testing.md index 8ad1eed72c..4197e31d3c 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -728,7 +728,7 @@ class UserFlowsTest < ActionDispatch::IntegrationTest https!(false) get "/articles/all" assert_response :success - assert assigns(:products) + assert assigns(:articles) end end ``` |