~nskaggs/ubuntu-rssreader-app/fix-actionselectorpopover

« back to all changes in this revision

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

  • Committer: David Planella
  • Author(s): Daniel Holbach
  • Date: 2013-09-26 09:01:24 UTC
  • mfrom: (71.2.5 enable-translations)
  • mto: This revision was merged to the branch mainline in revision 72.
  • Revision ID: david.planella@ubuntu.com-20130926090124-gwircz87xdd8dcjd
Fix paths after dropping ubuntu- from the name

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    else:
44
44
        scenarios = [('with touch', dict(input_device_class=Touch))]
45
45
 
46
 
    local_location = "../../ubuntu-rssreader-app.qml"
 
46
    local_location = "../../rssreader-app.qml"
47
47
    sqlite_dir = os.path.expanduser(
48
48
        "~/.local/share/Qt Project/QtQmlViewer/QML/OfflineStorage/Databases")
49
49
    backup_dir = sqlite_dir + ".backup"
75
75
    def launch_test_installed(self):
76
76
        self.app = self.launch_test_application(
77
77
            "qmlscene",
78
 
            "/usr/share/ubuntu-rssreader-app/ubuntu-rssreader-app.qml",
 
78
            "/usr/share/rssreader-app/rssreader-app.qml",
79
79
            "--desktop_file_hint=/usr/share/applications/"
80
 
            "ubuntu-rssreader-app.desktop",
 
80
            "rssreader-app.desktop",
81
81
            app_type='qt',
82
82
            emulator_base=toolkit_emulators.UbuntuUIToolkitEmulatorBase)
83
83