From 015e218d6cbf21e72e1496d64f79da715739ceb7 Mon Sep 17 00:00:00 2001 From: nahi Date: Thu, 27 May 2004 02:26:15 +0000 Subject: [PATCH] * test/csv/test_csv.rb: illegal require module name (../lib/csv.rb). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@6413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ test/csv/test_csv.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ea1215332f..72e1025a08 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Thu May 27 11:25:03 2004 NAKAMURA, Hiroshi + + * test/csv/test_csv.rb: illegal require module name (../lib/csv.rb). + Wed May 26 23:12:13 2004 NAKAMURA, Hiroshi * lib/csv.rb (CSV.read, CSV.readlines): added. works as IO.read and diff --git a/test/csv/test_csv.rb b/test/csv/test_csv.rb index 929d07a786..1db540921b 100644 --- a/test/csv/test_csv.rb +++ b/test/csv/test_csv.rb @@ -2,7 +2,7 @@ require 'test/unit' require 'tempfile' require 'fileutils' -require '../lib/csv.rb' +require 'csv' class CSV class StreamBuf