Skip to content

Commit 89a2e31

Browse files
committed
Unit test passing, integration not
1 parent 10bc531 commit 89a2e31

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integration/convert_to_db_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class << self
77
def startup
88
seed_test_database
99
@@options = get_test_config_by_label(:localmysql_to_db_convert_all)
10-
@@mysql2psql = Mysql2psql.new([@@options.filepath])
10+
@@mysql2psql = Mysql2psql.new(@@options)
1111
@@mysql2psql.convert
1212
@@mysql2psql.writer.open
1313
end

test/integration/convert_to_file_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class << self
77
def startup
88
seed_test_database
99
@@options = get_test_config_by_label(:localmysql_to_file_convert_all)
10-
@@mysql2psql = Mysql2psql.new([@@options.filepath])
10+
@@mysql2psql = Mysql2psql.new(@@options)
1111
@@mysql2psql.convert
1212
@@content = IO.read(@@mysql2psql.options.destfile)
1313
end

0 commit comments

Comments
 (0)