~corey.bryant/python-keystoneclient/1.6.0

« back to all changes in this revision

Viewing changes to tests/utils.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2013-02-11 12:32:43 UTC
  • Revision ID: package-import@ubuntu.com-20130211123243-vf4o7xig8e4lbijf
Tags: 1:0.2.2-0ubuntu2
debian/patches/fix-requests-requirements.patch: Bump python-requests
to 1.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
    TEST_ROOT_ADMIN_URL = 'http://127.0.0.1:35357/'
18
18
    TEST_ADMIN_URL = '%s%s' % (TEST_ROOT_ADMIN_URL, 'v2.0')
19
19
    TEST_REQUEST_BASE = {
20
 
        'config': {'danger_mode': False},
21
20
        'verify': True,
22
21
    }
23
22
 
94
93
    TEST_ROOT_ADMIN_URL = 'http://127.0.0.1:35357/'
95
94
    TEST_ADMIN_URL = '%s%s' % (TEST_ROOT_ADMIN_URL, 'v2.0')
96
95
    TEST_REQUEST_BASE = {
97
 
        'config': {'danger_mode': False},
98
96
        'verify': True,
99
97
    }
100
98