Fixed syntax error.

This commit is contained in:
Martin Edenhofer 2014-06-01 10:37:24 +02:00
parent fa8c4a9fda
commit 275e10fed2

View file

@ -109,12 +109,10 @@ class TwitterTest < ActiveSupport::TestCase
# fetch check system account # fetch check system account
Channel.fetch Channel.fetch
reply_text = reply_text.utf8_to_3bytesutf8
# check if follow up article has been created # check if follow up article has been created
assert_equal( article.ticket.articles.count, 2 ) assert_equal( article.ticket.articles.count, 2 )
reply_article = article.ticket.articles.last reply_article = article.ticket.articles.last
assert_equal( reply_article.body, ) assert_equal( reply_article.body, reply_text.utf8_to_3bytesutf8 )
end end