Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdonarski committed Oct 23, 2023
1 parent b2e42db commit 21e4db5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spec/models/spree/admin/main_menu/root_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module Admin
items.each { |i| root.add(i) }
end

it_behaves_like "implements item manipulation and query methods"
it_behaves_like 'implements item manipulation and query methods'

describe '#key' do
subject { root.key }
Expand Down
2 changes: 1 addition & 1 deletion spec/models/spree/admin/main_menu/section_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module Admin
let(:availability_check) { nil }
let(:items) { [] }

it_behaves_like "implements item manipulation and query methods"
it_behaves_like 'implements item manipulation and query methods'

describe '#key' do
subject { section.key }
Expand Down
2 changes: 1 addition & 1 deletion spec/models/spree/admin/tabs/root_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module Admin
items.each { |i| root.add(i) }
end

it_behaves_like "implements item manipulation and query methods"
it_behaves_like 'implements item manipulation and query methods'
end
end
end

0 comments on commit 21e4db5

Please sign in to comment.