Skip to content
Snippets Groups Projects
Commit dbb96d0e authored by Robert Applin's avatar Robert Applin
Browse files

Refs #23776. Fix failing tests

parent 2213c6c0
No related merge requests found
...@@ -36,9 +36,9 @@ class FunctionWrapper(object): ...@@ -36,9 +36,9 @@ class FunctionWrapper(object):
self.fun = name self.fun = name
else: else:
self.fun = FunctionFactory.createFunction(name) self.fun = FunctionFactory.createFunction(name)
self.init_parameters_and_attributes(**kwargs) self.init_paramgeters_and_attributes(**kwargs)
def init_parameters_and_attributes(self, **kwargs): def init_paramgeters_and_attributes(self, **kwargs):
# Deal with attributes first # Deal with attributes first
for key in kwargs: for key in kwargs:
if key == "attributes": if key == "attributes":
......
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