We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Running specs in 2.11.5 produces an error about an unknown constant. It appears that the core/lib/spree/testing_support.rb file has a bug and should be using a different syntax: https://github.com/solidusio/solidus/blame/master/core/lib/spree/testing_support.rb#L28. It appears that this was introduced in the 2.11.5 patch.
core/lib/spree/testing_support.rb
Solidus Version: 2.11.5
To Reproduce
bundle exec rspec
Current behavior
Failure/Error: require File.expand_path('../config/environment', __dir__) NameError: uninitialized constant Spree::Deprecator Did you mean? Spree::Deprecation Delegator # ./config/application.rb:102:in `block in <class:Application>' # ./config/environment.rb:5:in `<top (required)>' # ./spec/rails_helper.rb:8:in `require' # ./spec/rails_helper.rb:8:in `<top (required)>'
Expected behavior No errors. :-)
The text was updated successfully, but these errors were encountered:
Fix for incorrect deprecation class
224463e
It looks like `Spree::Deprecator` reference added in 2.11.5 should have been `Spree::Deprecation` instead. This should fix solidusio#3990
I think this PR should fix this problem: #3991
Sorry, something went wrong.
239af4e
It looks like `Spree::Deprecator` reference added in 2.11.5 should have been `Spree::Deprecation` instead. This should fix #3990
Successfully merging a pull request may close this issue.
Running specs in 2.11.5 produces an error about an unknown constant. It appears that the
core/lib/spree/testing_support.rb
file has a bug and should be using a different syntax: https://github.com/solidusio/solidus/blame/master/core/lib/spree/testing_support.rb#L28. It appears that this was introduced in the 2.11.5 patch.Solidus Version:
2.11.5
To Reproduce
bundle exec rspec
Current behavior
Expected behavior
No errors. :-)
The text was updated successfully, but these errors were encountered: