~ubuntu-branches/ubuntu/utopic/horizon/utopic-updates

« back to all changes in this revision

Viewing changes to openstack_dashboard/dashboards/identity/projects/tests.py

  • Committer: Package Import Robot
  • Author(s): James Page, Chris Johnston, James Page
  • Date: 2014-10-03 17:54:18 UTC
  • mfrom: (0.4.1) (1.1.44) (70.1.2 utopic)
  • Revision ID: package-import@ubuntu.com-20141003175418-1jomx0azdvnl5fxz
Tags: 1:2014.2~rc1-0ubuntu1
[ Chris Johnston ]
* d/theme/css/ubuntu.css: Fix Ubuntu theme for Instances "more" dropdown
  (LP: #1308651).

[ James Page ]
* New upstream release candidate:
  - d/p/*: Refresh.
* d/watch: Use tarballs.openstack.org for upstream releases. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
263
263
        self.assertTemplateUsed(res, views.WorkflowView.template_name)
264
264
        if django.VERSION >= (1, 6):
265
265
            self.assertContains(res, '''
266
 
                                <input class=" form-control"
 
266
                                <input class="form-control"
267
267
                                id="id_subnet" min="-1"
268
268
                                name="subnet" type="number" value="10" />
269
269
                                ''', html=True)
270
270
        else:
271
271
            self.assertContains(res, '''
272
 
                                <input class=" form-control"
 
272
                                <input class="form-control"
273
273
                                name="subnet" id="id_subnet"
274
274
                                value="10" type="text" />
275
275
                                ''', html=True)