We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0632f0 commit 56b005bCopy full SHA for 56b005b
tests/test_pre_post_process.py
@@ -187,8 +187,8 @@ def test_emod_process_from_file(self):
187
self.assertTrue(experiment.succeeded, msg=f"Experiment {experiment.uid} failed.\n")
188
189
for sim in experiment.simulations:
190
- file = self.platform.get_files(sim, ["stdOut.txt"])
191
- stdout = file["stdOut.txt"].decode("utf-8")
+ file = self.platform.get_files(sim, ["stdout.txt"])
+ stdout = file["stdout.txt"].decode("utf-8")
192
self.assertIn("dtk_in_process.py called on timestep", stdout)
193
self.assertIn("printing from dtk_post_process.py", stdout)
194
self.assertIn("printing from dtk_pre_process.py", stdout)
0 commit comments