aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-29 16:00:47 +0000
committerjeg2 <jeg2@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-03-29 16:00:47 +0000
commita9b53f6397e33fee8e4d9cda5a3a4e113a21a520 (patch)
tree811e2d10415d3db1c27b4ce9820934b4e766f160
parent896db7d62512ec9baa5b5f7b0644e22d3c619064 (diff)
downloadruby-a9b53f6397e33fee8e4d9cda5a3a4e113a21a520.tar.gz
* test/csv/test_interface.rb: Trying a fix for some failing tests
on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--test/csv/test_interface.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0e44579c40..72d3fec500 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Mar 30 01:00:20 2009 James Edward Gray II <jeg2@ruby-lang.org>
+
+ * test/csv/test_interface.rb: Trying a fix for some failing tests
+ on Windows.
+
Sun Mar 29 08:59:26 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/pathname.rb (Pathname#relative_path_from): compares path
diff --git a/test/csv/test_interface.rb b/test/csv/test_interface.rb
index a6028f92f3..e1f07f7323 100644
--- a/test/csv/test_interface.rb
+++ b/test/csv/test_interface.rb
@@ -15,7 +15,7 @@ class TestCSVInterface < Test::Unit::TestCase
def setup
@path = File.join(File.dirname(__FILE__), "temp_test_data.csv")
- File.open(@path, "w") do |file|
+ File.open(@path, "wb") do |file|
file << "1\t2\t3\r\n"
file << "4\t5\r\n"
end