Skip to content

Commit 56b005b

Browse files
committed
fix capitalization in test
1 parent e0632f0 commit 56b005b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_pre_post_process.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ def test_emod_process_from_file(self):
187187
self.assertTrue(experiment.succeeded, msg=f"Experiment {experiment.uid} failed.\n")
188188

189189
for sim in experiment.simulations:
190-
file = self.platform.get_files(sim, ["stdOut.txt"])
191-
stdout = file["stdOut.txt"].decode("utf-8")
190+
file = self.platform.get_files(sim, ["stdout.txt"])
191+
stdout = file["stdout.txt"].decode("utf-8")
192192
self.assertIn("dtk_in_process.py called on timestep", stdout)
193193
self.assertIn("printing from dtk_post_process.py", stdout)
194194
self.assertIn("printing from dtk_pre_process.py", stdout)

0 commit comments

Comments
 (0)