Skip to content

Commit 11d17f0

Browse files
committed
rubocop
1 parent 569de36 commit 11d17f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/mysql2/statement_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
it "should handle bignum but beyond uint64_t" do
7979
stmt = @client.prepare('SELECT ? AS max1, ? AS min1')
8080
int65_max1 = (1 << 64) - 1
81-
int65_min1 = -(1 << 64)+1
81+
int65_min1 = -(1 << 64) + 1
8282
result = stmt.execute(int65_max1, int65_min1)
8383
expect(result.to_a).to eq(['max1' => int65_max1.to_s, 'min1' => int65_min1.to_s])
8484
end

0 commit comments

Comments
 (0)