Skip to content

Commit

Permalink
road_runner -> road_runners
Browse files Browse the repository at this point in the history
  • Loading branch information
luciansmith committed Jul 24, 2023
1 parent ce83dac commit ad1d2f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_core_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -522,9 +522,9 @@ def test_exec_sed_task_with_preprocesssed_task(self):
variable_results, log = core.exec_sed_task(task, variables, preprocessed_task=preprocessed_task)
with self.assertRaises(AssertionError):
numpy.testing.assert_allclose(variable_results['C'][-1], end_c)
mid_c = preprocessed_task.road_runner[task.id]['C']
mid_m = preprocessed_task.road_runner[task.id]['M']
mid_x = preprocessed_task.road_runner[task.id]['X']
mid_c = preprocessed_task.road_runners[task.id]['C']
mid_m = preprocessed_task.road_runners[task.id]['M']
mid_x = preprocessed_task.road_runners[task.id]['X']
self.assertIsInstance(mid_c, float)

variable_results, log = core.exec_sed_task(task, variables, preprocessed_task=preprocessed_task)
Expand Down

0 comments on commit ad1d2f0

Please sign in to comment.