~macslow/unity/backported-remote-add-to-5.0

« back to all changes in this revision

Viewing changes to tests/autopilot/autopilot/emulators/unity/switcher.py

Merging with upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
            return None
137
137
 
138
138
    def get_icon_name(self, index):
139
 
        return self.__get_icon(index)['tooltip-text']
 
139
        return self.__get_icon(index)['tooltip_text']
140
140
 
141
141
    def get_icon_desktop_file(self, index):
142
142
        try:
143
 
            return self.__get_icon(index)['desktop-file']
 
143
            return self.__get_icon(index)['desktop_file']
144
144
        except:
145
145
            return None
146
146