summaryrefslogtreecommitdiff
path: root/spec/ruby/language/predefined/data_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/language/predefined/data_spec.rb')
-rw-r--r--spec/ruby/language/predefined/data_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/language/predefined/data_spec.rb b/spec/ruby/language/predefined/data_spec.rb
index 6a070c5d5e..7bbccdaca1 100644
--- a/spec/ruby/language/predefined/data_spec.rb
+++ b/spec/ruby/language/predefined/data_spec.rb
@@ -33,7 +33,7 @@ describe "The DATA constant" do
it "is set even if there is no newline after __END__" do
path = tmp("no_newline_data.rb")
- code = File.read(fixture(__FILE__, "empty_data.rb"))
+ code = File.binread(fixture(__FILE__, "empty_data.rb"))
touch(path) { |f| f.write code.chomp }
begin
ruby_exe(path).should == "30\n\"\"\n"