~ubuntu-branches/ubuntu/utopic/ubuntu-system-settings/utopic-proposed

« back to all changes in this revision

Viewing changes to tests/autopilot/ubuntu_system_settings/tests/__init__.py

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Ken VanDine, Martin Pitt, Sebastien Bacher
  • Date: 2014-09-11 21:08:06 UTC
  • mfrom: (1.1.168)
  • Revision ID: package-import@ubuntu.com-20140911210806-k7bovfrb4aix0mpp
Tags: 0.3+14.10.20140911.3-0ubuntu1
[ Ken VanDine ]
* Fixed tests for the dialpad settings failing on mako
* Don't call downloadUpdate when we see a system update ready, the
  service does that for us (LP: #1368294) (LP: #1368294)
* Translate desktop file (LP: #1318008) (LP: #1318008)

[ Martin Pitt ]
* update POT

[ Sebastien Bacher ]
* [system-update] open the ubuntuone subpanel rather than the list
  (LP: #1348580)
* [security-privacy] use ngettext strings when needed (LP: #1368159)
* Increase vertical spacing in the settings grid (LP: #1348579)

Show diffs side-by-side

added added

removed removed

Lines of Context:
317
317
class PhoneOfonoBaseTestCase(UbuntuSystemSettingsOfonoTestCase):
318
318
    def setUp(self):
319
319
        """ Go to Phone page """
320
 
        super(PhoneOfonoBaseTestCase, self).setUp()
321
 
        self.phone_page = self.system_settings.main_view.go_to_phone_page()
 
320
        super(PhoneOfonoBaseTestCase, self).setUp('phone')
 
321
        self.phone_page = self.system_settings.main_view.select_single(
 
322
            objectName='phonePage'
 
323
        )
322
324
 
323
325
 
324
326
class AboutBaseTestCase(UbuntuSystemSettingsTestCase):
695
697
    def setUp(self):
696
698
        """ Go to Phone page """
697
699
        super(PhoneSoundBaseTestCase, self).setUp('phone')
698
 
        self.phone_page = self.system_settings.main_view.go_to_phone_page()
 
700
        self.phone_page = self.system_settings.main_view.select_single(
 
701
            objectName='phonePage'
 
702
        )
699
703
 
700
704
    def tearDown(self):
701
705
        super(PhoneSoundBaseTestCase, self).tearDown()