Skip to content

Commit

Permalink
Fix RuboCop issues
Browse files Browse the repository at this point in the history
  • Loading branch information
timriley committed Aug 7, 2023
1 parent a6a4a18 commit 1dd17af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spec/support/matchers.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@
end

failure_message do |actual|
"expected that `#{actual}' would have content '#{expected}', but it has '#{subject.read(actual)}'" # rubocop:disable Layout/LineLength
"expected that `#{actual}' would have content '#{expected}', but it has '#{subject.read(actual)}'"
end
end
2 changes: 1 addition & 1 deletion spec/unit/dry/files/path_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
RSpec.describe Dry::Files::Path do
describe ".call" do
let(:unix_file_separator) { "/" }
let(:windows_file_separator) { '\\' }
let(:windows_file_separator) { "\\" }

context "when string" do
it "recombines given path with system file separator" do
Expand Down

0 comments on commit 1dd17af

Please sign in to comment.