From 1000c26c6fadd40ab0573653f12688dcc70c2b7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Schr=C3=B6ter?= Date: Fri, 2 Mar 2012 16:10:36 +0100 Subject: [PATCH] - fix fixtures for last vrev change --- tests/test_setlinkrev.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_setlinkrev.py b/tests/test_setlinkrev.py index e3ffe165..966177e6 100644 --- a/tests/test_setlinkrev.py +++ b/tests/test_setlinkrev.py @@ -33,7 +33,7 @@ class TestSetLinkRev(OscTestCase): @GET('http://localhost/source/osctest/simple/_link', file='noproject_link') @GET('http://localhost/source/osctest/srcpkg?rev=latest&expand=1', file='expandedsrc_filesremote') @PUT('http://localhost/source/osctest/simple/_link', - exp='', text='dummytext') + exp='', text='dummytext') def test_expandedsrc(self): """expand src package""" osc.core.set_link_rev('http://localhost', 'osctest', 'simple', expand=True) @@ -41,7 +41,7 @@ class TestSetLinkRev(OscTestCase): @GET('http://localhost/source/osctest/simple/_link', file='simple_link') @GET('http://localhost/source/srcprj/srcpkg?linkrev=base&rev=latest&expand=1', file='baserev_filesremote') @PUT('http://localhost/source/osctest/simple/_link', - exp='', text='dummytext') + exp='', text='dummytext') def test_baserev(self): """expanded baserev revision""" osc.core.set_link_rev('http://localhost', 'osctest', 'simple', baserev=True)