summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/data/channels.json2
-rw-r--r--tests/tst_UpdateChecker.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/data/channels.json b/tests/data/channels.json
index 6bf65a82..d7446274 100644
--- a/tests/data/channels.json
+++ b/tests/data/channels.json
@@ -11,7 +11,7 @@
"id": "stable",
"name": "Stable",
"description": "It's stable at least",
- "url": "ftp://username@host/path/to/stuff"
+ "url": "$PWD/tests/data/"
},
{
"id": "42",
diff --git a/tests/tst_UpdateChecker.cpp b/tests/tst_UpdateChecker.cpp
index 162d0009..19ac85ab 100644
--- a/tests/tst_UpdateChecker.cpp
+++ b/tests/tst_UpdateChecker.cpp
@@ -77,7 +77,7 @@ slots:
<< true
<< (QList<UpdateChecker::ChannelListEntry>()
<< UpdateChecker::ChannelListEntry{"develop", "Develop", "The channel called \"develop\"", "$PWD/tests/data/"}
- << UpdateChecker::ChannelListEntry{"stable", "Stable", "It's stable at least", "ftp://username@host/path/to/stuff"}
+ << UpdateChecker::ChannelListEntry{"stable", "Stable", "It's stable at least", "$PWD/tests/data/"}
<< UpdateChecker::ChannelListEntry{"42", "The Channel", "This is the channel that is going to answer all of your questions", "https://dent.me/tea"});
}
void tst_ChannelListParsing()