Skip to content

Commit

Permalink
test: remove checks for 'rabbits' event context
Browse files Browse the repository at this point in the history
Problem: the 'rabbits' entry in the 'dws_environment' eventlog
entry has been removed, but tests still expect it.

Remove tests for it.
  • Loading branch information
jameshcorbett committed Jan 24, 2025
1 parent d501877 commit f80dd4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions t/t1002-dws-workflow-obj.t
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ test_expect_success 'job submission with valid DW string works' '
${jobid} prolog-finish &&
flux job wait-event -vt 15 -m status=0 ${jobid} finish &&
flux job wait-event -t1 -fjson ${jobid} dws_environment > env-event.json &&
jq -e .context.variables env-event.json && jq -e .context.rabbits env-event.json &&
jq -e .context.variables env-event.json &&
jq -e ".context.copy_offload == false" env-event.json &&
flux job wait-event -vt 15 -m description=${EPILOG_NAME} \
${jobid} epilog-start &&
Expand Down Expand Up @@ -206,7 +206,7 @@ test_expect_success 'job requesting copy-offload in DW string works' '
${jobid} prolog-finish &&
flux job wait-event -vt 15 -m status=0 ${jobid} finish &&
flux job wait-event -t1 -fjson ${jobid} dws_environment > env-event2.json &&
jq -e .context.variables env-event2.json && jq -e .context.rabbits env-event2.json &&
jq -e .context.variables env-event2.json &&
jq -e ".context.copy_offload == true" env-event2.json &&
flux job wait-event -vt 15 -m description=${EPILOG_NAME} \
${jobid} epilog-start &&
Expand Down

0 comments on commit f80dd4d

Please sign in to comment.