summaryrefslogtreecommitdiff
path: root/tests/frontend/project/sources/fetch_source.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/frontend/project/sources/fetch_source.py')
-rw-r--r--tests/frontend/project/sources/fetch_source.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/frontend/project/sources/fetch_source.py b/tests/frontend/project/sources/fetch_source.py
index 9a873d1fe..7c0df4595 100644
--- a/tests/frontend/project/sources/fetch_source.py
+++ b/tests/frontend/project/sources/fetch_source.py
@@ -38,7 +38,7 @@ class FetchFetcher(SourceFetcher):
class FetchSource(Source):
# Read config to know which URLs to fetch
def configure(self, node):
- self.original_urls = self.node_get_member(node, list, 'urls')
+ self.original_urls = node.get_sequence('urls').as_str_list()
self.output_file = node.get_str('output-text')
self.fetch_succeeds = {}
if 'fetch-succeeds' in node: