Skip to content

Commit 9ff6a03

Browse files
committed
Layout/SpaceInsidePercentLiteralDelimiters
1 parent e864fd6 commit 9ff6a03

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

.rubocop_todo.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@
66
# Note that changes in the inspected code, or installation of new
77
# versions of RuboCop, may require this file to be generated again.
88

9-
# Offense count: 2
10-
# Cop supports --auto-correct.
11-
Layout/SpaceInsidePercentLiteralDelimiters:
12-
Exclude:
13-
- 'spec/mysql2/client_spec.rb'
14-
159
# Offense count: 2
1610
Lint/AmbiguousBlockAssociation:
1711
Exclude:

spec/mysql2/client_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def connect(*args)
6363
end
6464

6565
it "should parse flags array" do
66-
client = Klient.new :flags => %w( FOUND_ROWS -PROTOCOL_41 )
66+
client = Klient.new :flags => %w(FOUND_ROWS -PROTOCOL_41)
6767
expect(client.connect_args.last[6] & Mysql2::Client::FOUND_ROWS).to eql(Mysql2::Client::FOUND_ROWS)
6868
expect(client.connect_args.last[6] & Mysql2::Client::PROTOCOL_41).to eql(0)
6969
end

0 commit comments

Comments
 (0)