Skip to content

Commit

Permalink
Fix tests for new requests
Browse files Browse the repository at this point in the history
  • Loading branch information
astagi committed Aug 26, 2016
1 parent 4ef7666 commit 5495f47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_requestmaker.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from taiga.requestmaker import RequestMaker
from taiga.requestmaker import RequestMaker, _disable_pagination
import taiga.exceptions
import requests
import unittest
Expand Down Expand Up @@ -32,7 +32,7 @@ def test_call_requests_post_with_files(self, requests_post):
data=None, params={},
headers={
'Authorization': 'Bearer f4k3',
'x-disable-pagination': True
'x-disable-pagination': _disable_pagination()
}
)

Expand Down

0 comments on commit 5495f47

Please sign in to comment.