You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In a handful of the routing tests, the incorrect controller is being referenced, which brings in the incorrect context. Correct the routing tests controllers so that they are testing the correct routes. Example:
spec/routing/digital_projects_routing_spec.rb
currently:
RSpec.describe BookChaptersController, type: :routing do
should be:
RSpec.describe DigitalProjectsController, type: :routing do
The text was updated successfully, but these errors were encountered:
In a handful of the routing tests, the incorrect controller is being referenced, which brings in the incorrect context. Correct the routing tests controllers so that they are testing the correct routes. Example:
spec/routing/digital_projects_routing_spec.rb
currently:
RSpec.describe BookChaptersController, type: :routing do
should be:
RSpec.describe DigitalProjectsController, type: :routing do
The text was updated successfully, but these errors were encountered: