Skip to content

Commit

Permalink
Edit comments
Browse files Browse the repository at this point in the history
  • Loading branch information
dandavison committed Jul 15, 2024
1 parent 0c8c780 commit 27f0eaf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@ func (ts *IntegrationTestSuite) TestUpdateInfo() {
run, err := ts.client.ExecuteWorkflow(ctx,
ts.startWorkflowOptions("test-update-info"), ts.workflows.UpdateInfoWorkflow)
ts.Nil(err)
// Send an update request with a know update ID
// Send an update request with a known update ID
handler, err := ts.client.UpdateWorkflow(ctx, client.UpdateWorkflowOptions{
UpdateID: "testID",
WorkflowID: run.GetID(),
Expand All @@ -1467,7 +1467,7 @@ func (ts *IntegrationTestSuite) TestUpdateInfo() {
WaitForStage: client.WorkflowUpdateStageCompleted,
})
ts.NoError(err)
// Verify the upate handler can access the update info and return the updateID
// Verify the update handler can access the update info and return the updateID
var result string
ts.NoError(handler.Get(ctx, &result))
ts.Equal("testID", result)
Expand Down

0 comments on commit 27f0eaf

Please sign in to comment.