aboutsummaryrefslogtreecommitdiffstats
path: root/spec/models/raw_email_spec.rb
diff options
context:
space:
mode:
authorRobin Houston <robin@lenny.robin>2011-06-21 03:19:22 +0100
committerRobin Houston <robin@lenny.robin>2011-06-21 03:19:22 +0100
commit3b29b7c3f65e0c3153fbed0d27f864aaf624a36d (patch)
treed20954ebbce516524dc3f83646cb5f46a92021a7 /spec/models/raw_email_spec.rb
parent543ee94019b124387ef775c1312e40730a0d1cdd (diff)
Replace STDERR.puts by $stderr.puts elsewhere, which is potentially more flexible (because STDERR is always the system standard error file descriptor, whereas $stderr can be replaced by some other ruby object to handle error output).
Diffstat (limited to 'spec/models/raw_email_spec.rb')
-rw-r--r--spec/models/raw_email_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/models/raw_email_spec.rb b/spec/models/raw_email_spec.rb
index 75066bbcc..6f3a8acd6 100644
--- a/spec/models/raw_email_spec.rb
+++ b/spec/models/raw_email_spec.rb
@@ -23,8 +23,8 @@ describe User, "manipulating a raw email" do
# @raw_email.data = "This \\ that"
# @raw_email.save!
# @raw_email.reload
-# STDERR.puts @raw_email.data
-# STDERR.puts "This \\ that"
+# $stderr.puts @raw_email.data
+# $stderr.puts "This \\ that"
# @raw_email.data.should == "This \\ that"
# end