Skip to content

Commit 4245575

Browse files
committed
remove_column uses kwargs for options
1 parent 4c12d22 commit 4245575

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/simple.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@ def test_remove_column
754754
columns = DbType.connection.columns('db_types')
755755
assert ! columns.detect { |c| c.name.to_s == 'sample_text' }
756756

757-
DbType.connection.remove_column :db_types, :sample_float, nil, {}
757+
DbType.connection.remove_column :db_types, :sample_float, nil
758758
columns = DbType.connection.columns('db_types')
759759
assert ! columns.detect { |c| c.name.to_s == 'sample_float' }
760760
end

0 commit comments

Comments
 (0)