about summary refs log tree commit diff
path: root/spec
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2017-08-18 17:42:59 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-08-18 10:42:59 +0200
commit2edfdab6e6d70598a19d59f8a2f47ecae8add243 (patch)
treead6904cb365f3e7b875a9cde5417386834627c00 /spec
parent4edf9d849f5241aed42042577c889549a5b6beaa (diff)
Don't send Link header when don't know prev and next links (#4633)
Diffstat (limited to 'spec')
-rw-r--r--spec/controllers/api/v1/favourites_controller_spec.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/spec/controllers/api/v1/favourites_controller_spec.rb b/spec/controllers/api/v1/favourites_controller_spec.rb
index 3de045377..46cf70f4d 100644
--- a/spec/controllers/api/v1/favourites_controller_spec.rb
+++ b/spec/controllers/api/v1/favourites_controller_spec.rb
@@ -70,8 +70,7 @@ RSpec.describe Api::V1::FavouritesController, type: :controller do
         it 'does not add pagination headers if not necessary' do
           get :index
 
-          expect(response.headers['Link'].find_link(['rel', 'next'])).to eq nil
-          expect(response.headers['Link'].find_link(['rel', 'prev'])).to eq nil
+          expect(response.headers['Link']).to eq nil
         end
       end
     end