Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed tests #487

Merged
merged 1 commit into from
Dec 19, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions framework/PostProcessors/ETImporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,15 +459,7 @@ def collectOutput(self, finishedJob, output):
'dataObject (' + str(set(output.getVars())) + ') is different form the set of '
'variables specified in the ET (' + str(set(outputDict.keys())))
if output.type in ['PointSet']:
for key in outputDict.keys():
output.addVariable(key,outputDict[key])
'''
for key in output.getParaKeys('inputs'):
for value in outputDict['inputs'][key]:
output.updateInputValue(str(key),value)
for key in output.getParaKeys('outputs'):
for value in outputDict['outputs'][key]:
output.updateOutputValue(str(key),value)'''
output.load(outputDict,style='dict')
else:
self.raiseAnError(RuntimeError, 'ETImporter failed: Output type ' + str(output.type) + ' is not supported.')

Expand Down