Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
pdoerner committed Nov 27, 2024
1 parent 9437de3 commit 2197e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/nexus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ func TestNexusWorkflowRunOperation(t *testing.T) {
callback, ok := desc.Callbacks[0].Callback.Variant.(*common.Callback_Nexus_)
require.True(t, ok)
require.Equal(t, "http://localhost/test", callback.Nexus.Url)
require.Contains(t, callback.Nexus.Header, map[string]string{"test": "ok"})
require.Subset(t, callback.Nexus.Header, map[string]string{"test": "ok"})

run := tc.client.GetWorkflow(ctx, workflowID, "")
require.NoError(t, handle.Cancel(ctx, nexus.CancelOperationOptions{}))
Expand Down

0 comments on commit 2197e11

Please sign in to comment.