Skip to content

Commit 6e70d73

Browse files
RuboCop.
1 parent 6317d69 commit 6e70d73

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

gems.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
gem "sus"
2222
gem "covered"
2323
gem "decode"
24-
24+
2525
gem "rubocop"
2626
gem "rubocop-md"
2727
gem "rubocop-socketry"

test/async/safe.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def read
5656
it "allows concurrent access to async-safe classes" do
5757
queue_class = Class.new do
5858
async_safe!
59-
59+
6060
def push(item)
6161
@items ||= []
6262
@items << item

test/async/safe/builtins.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ def process
341341

342342
begin
343343
Fiber.new do
344-
5.times { values << queue.pop }
344+
5.times {values << queue.pop}
345345
end.resume
346346
rescue Async::Safe::ViolationError
347347
exception_raised = true

test/async/safe/monitor.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def read
2525
end
2626
end
2727

28-
let(:monitor) { Async::Safe::Monitor.new }
28+
let(:monitor) {Async::Safe::Monitor.new}
2929

3030
with "#check_access" do
3131
it "records ownership on first access" do

0 commit comments

Comments
 (0)