File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 6
6
# Note that changes in the inspected code, or installation of new
7
7
# versions of RuboCop, may require this file to be generated again.
8
8
9
- # Offense count: 2
10
- # Cop supports --auto-correct.
11
- Layout/SpaceInsidePercentLiteralDelimiters :
12
- Exclude :
13
- - ' spec/mysql2/client_spec.rb'
14
-
15
9
# Offense count: 2
16
10
Lint/AmbiguousBlockAssociation :
17
11
Exclude :
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def connect(*args)
63
63
end
64
64
65
65
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 )
67
67
expect ( client . connect_args . last [ 6 ] & Mysql2 ::Client ::FOUND_ROWS ) . to eql ( Mysql2 ::Client ::FOUND_ROWS )
68
68
expect ( client . connect_args . last [ 6 ] & Mysql2 ::Client ::PROTOCOL_41 ) . to eql ( 0 )
69
69
end
You can’t perform that action at this time.
0 commit comments