Skip to content

Commit

Permalink
RuboCop.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Oct 4, 2024
1 parent e5dd2ad commit 217290d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/io/event/selector/fifo_io.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
# Released under the MIT License.
# Copyright, 2021-2023, by Samuel Williams.

require 'io/event'
require 'io/event/selector'
require 'fileutils'
require 'tmpdir'
require "io/event"
require "io/event/selector"
require "fileutils"
require "tmpdir"

FifoIO = Sus::Shared("fifo io") do
with 'a fifo' do
with "a fifo" do
def around(&block)
@root = Dir.mktmpdir
super
Expand All @@ -19,7 +19,7 @@ def around(&block)

let(:path) {File.join(@root, "fifo")}

it 'can read and write' do
it "can read and write" do
skip_if_ruby_platform(/mswin|mingw|cygwin/)

File.mkfifo(path)
Expand Down

0 comments on commit 217290d

Please sign in to comment.