Skip to content

Commit 58d0a0d

Browse files
committed
Switch from pending to skip because of rspec 3 changes
1 parent 5ebb899 commit 58d0a0d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

spec/mysql2/client_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ def run_gc
368368
new_client(:local_infile => true) do |client|
369369
local = client.query "SHOW VARIABLES LIKE 'local_infile'"
370370
local_enabled = local.any? { |x| x['Value'] == 'ON' }
371-
pending("DON'T WORRY, THIS TEST PASSES - but LOCAL INFILE is not enabled in your MySQL daemon.") unless local_enabled
371+
skip("DON'T WORRY, THIS TEST PASSES - but LOCAL INFILE is not enabled in your MySQL daemon.") unless local_enabled
372372

373373
client.query %[
374374
CREATE TABLE IF NOT EXISTS infileTest (
@@ -382,7 +382,7 @@ def run_gc
382382

383383
after(:all) do
384384
new_client do |client|
385-
client.query "DROP TABLE infileTest"
385+
client.query "DROP TABLE IF EXISTS infileTest"
386386
end
387387
end
388388

0 commit comments

Comments
 (0)