Skip to content
Snippets Groups Projects
Commit fc6d2096 authored by Philippe Charpentier's avatar Philippe Charpentier
Browse files

fix returned value for addFilesToTransformation in fake client

parent 4b2b5421
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ class fakeClient:
( self.files, self.replicas ) = self.prepareForPlugin( lfns )
def addFilesToTransformation( self, transID, lfns ):
return S_OK( {'Failed':{}, 'Successful': [( lfn, 'Added' ) for lfn in lfns]} )
return S_OK( {'Failed':{}, 'Successful': dict( [( lfn, 'Added' ) for lfn in lfns] )} )
def getTransformation( self, transID, extraParams = False ):
if transID == self.transID and self.asIfProd:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment