From 5fa9b930034b28efd301a0a81463d64b101faf0d Mon Sep 17 00:00:00 2001 From: Zach Dennis Date: Sun, 26 Sep 2010 22:10:12 -0400 Subject: [PATCH] Updating MySQL import tests to load files in a ruby1.9 friendly way. --- test/mysql/import_test.rb | 4 ++-- test/mysql2/import_test.rb | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/test/mysql/import_test.rb b/test/mysql/import_test.rb index 274fcee..feaff67 100644 --- a/test/mysql/import_test.rb +++ b/test/mysql/import_test.rb @@ -1,6 +1,6 @@ require File.expand_path(File.dirname(__FILE__) + '/../test_helper') -require "test/support/mysql/assertions" -require "test/support/mysql/import_examples" +require File.expand_path(File.dirname(__FILE__) + '/../support/mysql/assertions') +require File.expand_path(File.dirname(__FILE__) + '/../support/mysql/import_examples') should_support_mysql_import_functionality \ No newline at end of file diff --git a/test/mysql2/import_test.rb b/test/mysql2/import_test.rb index 274fcee..feaff67 100644 --- a/test/mysql2/import_test.rb +++ b/test/mysql2/import_test.rb @@ -1,6 +1,6 @@ require File.expand_path(File.dirname(__FILE__) + '/../test_helper') -require "test/support/mysql/assertions" -require "test/support/mysql/import_examples" +require File.expand_path(File.dirname(__FILE__) + '/../support/mysql/assertions') +require File.expand_path(File.dirname(__FILE__) + '/../support/mysql/import_examples') should_support_mysql_import_functionality \ No newline at end of file