Commit 06e38dcf15cbb6a7204f108af203ff0863ed7605
1 parent
9d7e5085
Exists in
master
and in
28 other branches
Fix indentation
Showing
1 changed file
with
7 additions
and
7 deletions
Show diff stats
test/unit/comment_notifier_test.rb
... | ... | @@ -83,15 +83,15 @@ class CommentNotifierTest < ActiveSupport::TestCase |
83 | 83 | private |
84 | 84 | |
85 | 85 | def create_comment_and_notify(args) |
86 | - Comment!.create(args) | |
86 | + Comment.create!(args) | |
87 | 87 | end |
88 | 88 | |
89 | - def read_fixture(action) | |
90 | - IO.readlines("#{FIXTURES_PATH}/mail_sender/#{action}") | |
91 | - end | |
89 | + def read_fixture(action) | |
90 | + IO.readlines("#{FIXTURES_PATH}/mail_sender/#{action}") | |
91 | + end | |
92 | 92 | |
93 | - def encode(subject) | |
94 | - quoted_printable(subject, CHARSET) | |
95 | - end | |
93 | + def encode(subject) | |
94 | + quoted_printable(subject, CHARSET) | |
95 | + end | |
96 | 96 | |
97 | 97 | end | ... | ... |