diff --git a/spec/acceptance/collections_spec.rb b/spec/acceptance/collections_spec.rb index a3d636d5740b375499246654f24765cd0958ad56..3b6db6d86aab132b648ca61647fe7c34caa88eeb 100644 --- a/spec/acceptance/collections_spec.rb +++ b/spec/acceptance/collections_spec.rb @@ -124,7 +124,7 @@ resource 'Collections' do end - post '/v1/collections/:id/like' do + put '/v1/collections/:id/like' do include_context "authenticate_user" let(:id) { collections.first.id } @@ -138,7 +138,7 @@ resource 'Collections' do end end - delete '/v1/collections/:id/like' do + put '/v1/collections/:id/like' do include_context "authenticate_user" let(:id) { collections.first.id } diff --git a/spec/acceptance/learning_objects_spec.rb b/spec/acceptance/learning_objects_spec.rb index fe74369478f25a71cde4d7055f0d7c005a6f76e9..b3354842560ab72b70d0183a3982738f3aba5bc1 100644 --- a/spec/acceptance/learning_objects_spec.rb +++ b/spec/acceptance/learning_objects_spec.rb @@ -102,7 +102,7 @@ resource 'Learning Objects' do end end - post '/v1/learning_objects/:id/like' do + put '/v1/learning_objects/:id/like' do include_context "authenticate_user" let(:id) { learning_objects.first.id } @@ -116,7 +116,7 @@ resource 'Learning Objects' do end end - delete '/v1/learning_objects/:id/like' do + put '/v1/learning_objects/:id/like' do include_context "authenticate_user" let(:id) { learning_objects.first.id } @@ -167,7 +167,7 @@ resource 'Learning Objects' do end end - + delete '/v1/learning_objects/:id' do include_context "authenticate_user"