String workflowFile2String = IOUtil.readFileToString(workflowFile2);
assertEquals(workflowFileString, workflowFile2String);
// Create a Jython script
File jythonFile = new File(this.temporaryDirectory, "web-complex-math.py");
JythonScript script = new JythonScript(workflow, this.configuration);
script.create();
IOUtil.writeToFile(script.getJythonString(), jythonFile);
}