~zulcss/ubuntu/precise/glance/trunk

« back to all changes in this revision

Viewing changes to glance/tests/unit/utils.py

  • Committer: Chuck Short
  • Date: 2012-11-26 19:39:15 UTC
  • mfrom: (61.1.3 raring-proposed)
  • Revision ID: zulcss@ubuntu.com-20121126193915-jplc8l13tpkcqj87
* New upstream release for the Ubuntu Cloud Archive.
* debian/patches/*: Refreshed for opening of Grizzly.
* debian/glance-client.install: Dropped
* New upstream version
* debian/rules: FTBFS if there are missing binaries
* debian/glance-registry.install: Add glance-replicator
* debian/patches/disable-swift-tests.patch: Dropped.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
    req.method = method
41
41
 
42
42
    kwargs = {
43
 
            'user': user,
44
 
            'tenant': TENANT1,
45
 
            'roles': [],
46
 
            'is_admin': is_admin,
47
 
        }
 
43
        'user': user,
 
44
        'tenant': TENANT1,
 
45
        'roles': [],
 
46
        'is_admin': is_admin,
 
47
    }
48
48
 
49
49
    req.context = glance.context.RequestContext(**kwargs)
50
50