Skip to content

Commit

Permalink
requirements: use github version of httplib2
Browse files Browse the repository at this point in the history
  • Loading branch information
dzen committed Mar 29, 2016
1 parent 2caef60 commit 8add470
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions aioamqp/tests/testcase.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ class RabbitTestCase(testing.AsyncioTestCaseMixin):
"""TestCase with a rabbit running in background"""

RABBIT_TIMEOUT = 1.0
VHOST = '/test-aioamqp'
VHOST = 'test-aioamqp'

def setUp(self):
super().setUp()
self.host = os.environ.get('AMQP_HOST', 'localhost')
self.port = os.environ.get('AMQP_PORT', 5672)
self.vhost = os.environ.get('AMQP_VHOST', self.VHOST)
self.http_client = pyrabbit.api.Client('localhost:15672', 'guest', 'guest')
self.http_client = pyrabbit.api.Client('localhost:15672/api/', 'guest', 'guest')

self.amqps = []
self.channels = []
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
nose
coverage
pylint==1.1.0
pyrabbit
-e git+https://github.com/bkjones/pyrabbit.git#egg=pyrabbit

0 comments on commit 8add470

Please sign in to comment.