1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2025-03-11 14:49:16 +00:00

Fix test after wording change. Fix link in source tab (#22)

This commit is contained in:
Manu 2018-11-21 21:03:09 +08:00
parent 915fd5f59f
commit 5872491f3e
2 changed files with 4 additions and 1 deletions

View file

@ -69,6 +69,9 @@
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Exclude Patterns (&lt;a href=&quot;https://borgbackup.readthedocs.io/en/stable/usage/help.html#borg-help-patterns&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;more&lt;/span&gt;&lt;/a&gt;)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="openExternalLinks">
<bool>true</bool>
</property>
</widget>
</item>
<item row="0" column="1">

View file

@ -9,7 +9,7 @@ from vorta.models import EventLogModel, RepoModel, SnapshotModel
def test_create_fail(app, qtbot):
main = app.main_window
qtbot.mouseClick(main.createStartBtn, QtCore.Qt.LeftButton)
assert main.createProgressText.text() == 'Add a remote backup repository first.'
assert main.createProgressText.text() == 'Add a backup repository first.'
def test_repo_add(app, qtbot, mocker, borg_json_output):