summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authormartin.von.loewis <devnull@localhost>2009-04-01 02:10:40 +0000
committermartin.von.loewis <devnull@localhost>2009-04-01 02:10:40 +0000
commit8fd4d079d6f183f75659c1271edd5cc22fd221ae (patch)
tree6086d031ca7e18b63060155ee56bd5c10739d5df /tests
parentd80840e54f03db3801366302ed0590b2074fc45e (diff)
downloaddecorator-8fd4d079d6f183f75659c1271edd5cc22fd221ae.tar.gz
Drop name parameter from config. Patch by Dan Callahan.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/rpc-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/rpc-test.py b/tests/rpc-test.py
index aea6112..bb61345 100755
--- a/tests/rpc-test.py
+++ b/tests/rpc-test.py
@@ -9,7 +9,7 @@ class XMLRPC ( unittest.TestCase ):
def setUp( self ):
# get a storage object to use in calls to xmlrpc functions
- self.store = store.Store( config.Config( "/tmp/pypi/config.ini", "webui" ) )
+ self.store = store.Store( config.Config( "/tmp/pypi/config.ini" ) )
def testEcho( self ):
result = rpc.echo(self.store, 'a', 'b', 1, 3.4)