From f7eab473f051f511b957b7dd7f61f05a05c37288 Mon Sep 17 00:00:00 2001 From: Marcus Huewe Date: Mon, 11 Nov 2013 09:15:59 +0100 Subject: [PATCH] - tests.test_prdiff: fixed testcases (got broken by commit bd3a6d2fc88504deceda9f90f9c2fd9f61a9a798) --- tests/test_prdiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_prdiff.py b/tests/test_prdiff.py index 595b80c7..4bc70bdb 100644 --- a/tests/test_prdiff.py +++ b/tests/test_prdiff.py @@ -13,7 +13,7 @@ UPSTREAM = 'some:project' BRANCH = 'home:user:branches:' + UPSTREAM def rdiff_url(pkg, oldprj, newprj): - return API_URL + 'source/%s/%s?unified=1&opackage=%s&oproject=%s&cmd=diff&expand=1&filelimit=0' % \ + return API_URL + 'source/%s/%s?unified=1&opackage=%s&oproject=%s&cmd=diff&expand=1&tarlimit=0&filelimit=0' % \ (newprj, pkg, pkg, oldprj.replace(':', '%3A')) def request_url(prj):