Skip to content

Commit 7e0f374

Browse files
committed
Fix warning for space before ()
1 parent 4706343 commit 7e0f374

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/examples/time_util_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module IceCube
2626
it "returns 00:00:00 from UTC for local time" do
2727
time = TimeUtil.beginning_of_date(utc_time.to_date, dst_time)
2828
expect([time.hour, time.min, time.sec]).to eq [0, 0, 0]
29-
expect(time.utc_offset).to eq (dst_time.utc_offset)
29+
expect(time.utc_offset).to eq dst_time.utc_offset
3030
end
3131

3232
it "returns 00:00:00 from local time for UTC" do

0 commit comments

Comments
 (0)