Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
```
Error: undefined constant SaveUserName
```

Missed this in commit 0acd54c.
  • Loading branch information
akadusei committed Jul 28, 2024
1 parent a2490e1 commit 7a30c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/app/operations/mixins/save_user_name_spec.cr
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ private class SaveUser < User::SaveOperation
}.to_json)
end

include SaveUserName
include Mixins::SaveUserName
end

describe SaveUserName do
describe Mixins::SaveUserName do
it "saves first and last names" do
first_name = "Kofi"
last_name = "Amoako"
Expand Down

0 comments on commit 7a30c3f

Please sign in to comment.