Skip to content

Commit

Permalink
Removing disabling cop (since it's in our global config in hanami-dev…
Browse files Browse the repository at this point in the history
…tools)
  • Loading branch information
cllns committed Jul 3, 2024
1 parent 8c2155c commit ebdffdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/unit/hanami/utils/string_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

it "applies transformations from proc" do
input = "Hanami"
actual = Hanami::Utils::String.transform(input, ->(i) { i.upcase }) # rubocop:disable Style/SymbolProc
actual = Hanami::Utils::String.transform(input, ->(i) { i.upcase })

expect(input).to eq("Hanami")
expect(actual).to eq("HANAMI")
Expand Down

0 comments on commit ebdffdb

Please sign in to comment.