forked from openlp/openlp
Fix up text
This commit is contained in:
parent
8188650486
commit
5696655768
@ -1205,8 +1205,8 @@ class ServiceManager(QtWidgets.QWidget, RegistryBase, Ui_ServiceManager, LogMixi
|
||||
if item['service_item'].is_capable(ItemCapabilities.HasVariableStartTime):
|
||||
tips.append(item['service_item'].get_media_time())
|
||||
if item['service_item'].is_capable(ItemCapabilities.HasMetaData):
|
||||
for d in item['service_item'].metadata:
|
||||
tips.append(d)
|
||||
for meta in item['service_item'].metadata:
|
||||
tips.append(meta)
|
||||
tree_widget_item.setToolTip(0, '<br>'.join(tips))
|
||||
tree_widget_item.setData(0, QtCore.Qt.UserRole, item['order'])
|
||||
tree_widget_item.setSelected(item['selected'])
|
||||
|
@ -42,7 +42,7 @@ class TestController(TestCase):
|
||||
|
||||
def test_controller_text(self):
|
||||
"""
|
||||
Remote Deploy tests - test the dummy zip file is processed correctly
|
||||
Remote API Tests : test the controller text method can be called
|
||||
"""
|
||||
# GIVEN: A mocked service with a dummy service item
|
||||
self.mocked_live_controller.service_item = MagicMock()
|
||||
|
Loading…
Reference in New Issue
Block a user