We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 569de36 commit 11d17f0Copy full SHA for 11d17f0
spec/mysql2/statement_spec.rb
@@ -78,7 +78,7 @@
78
it "should handle bignum but beyond uint64_t" do
79
stmt = @client.prepare('SELECT ? AS max1, ? AS min1')
80
int65_max1 = (1 << 64) - 1
81
- int65_min1 = -(1 << 64)+1
+ int65_min1 = -(1 << 64) + 1
82
result = stmt.execute(int65_max1, int65_min1)
83
expect(result.to_a).to eq(['max1' => int65_max1.to_s, 'min1' => int65_min1.to_s])
84
end
0 commit comments