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