Skip to content

Commit

Permalink
TST: Rename variable for consistency
Browse files Browse the repository at this point in the history
skipci
  • Loading branch information
cortadocodes committed Jun 28, 2024
1 parent 80b136d commit 8ddf652
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ def test_asynchronous_question(self):
)

replayer = EventReplayer()
result = replayer.handle_events(events)
answer = replayer.handle_events(events)

# Check the output values.
self.assertEqual(list(result["output_values"]), [1, 2, 3, 4, 5])
self.assertEqual(list(answer["output_values"]), [1, 2, 3, 4, 5])

with result["output_manifest"].datasets["example_dataset"].files.one() as (datafile, f):
with answer["output_manifest"].datasets["example_dataset"].files.one() as (datafile, f):
self.assertEqual(f.read(), "This is some example service output.")

0 comments on commit 8ddf652

Please sign in to comment.