diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-09-01 23:51:23 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-09-01 23:51:23 +0530 |
commit | a6674991037fc360c7a72e7c28eec448f0231a3e (patch) | |
tree | f31b246cf779b8a09b4bc1d0db132c0e712d732b /guides/source/plugins.textile | |
parent | 7f800b4d69c0750bb47989027580299751a22616 (diff) | |
parent | 831b814a8778aad0d038aab550b7d405d4a69d37 (diff) | |
download | rails-a6674991037fc360c7a72e7c28eec448f0231a3e.tar.gz rails-a6674991037fc360c7a72e7c28eec448f0231a3e.tar.bz2 rails-a6674991037fc360c7a72e7c28eec448f0231a3e.zip |
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'guides/source/plugins.textile')
-rw-r--r-- | guides/source/plugins.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/plugins.textile b/guides/source/plugins.textile index fbd317f0c2..50ea6b166a 100644 --- a/guides/source/plugins.textile +++ b/guides/source/plugins.textile @@ -174,11 +174,11 @@ require 'test_helper' class ActsAsYaffleTest < Test::Unit::TestCase def test_a_hickwalls_yaffle_text_field_should_be_last_squawk - assert_equal :last_squawk, Hickwall.yaffle_text_field + assert_equal "last_squawk", Hickwall.yaffle_text_field end def test_a_wickwalls_yaffle_text_field_should_be_last_tweet - assert_equal :last_tweet, Wickwall.yaffle_text_field + assert_equal "last_tweet", Wickwall.yaffle_text_field end end |