diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/integration/actions_trigger_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/integration/actions_trigger_test.go b/tests/integration/actions_trigger_test.go index bbf7ad302e..bacf13e6c5 100644 --- a/tests/integration/actions_trigger_test.go +++ b/tests/integration/actions_trigger_test.go @@ -138,7 +138,7 @@ func TestPullRequestTargetEvent(t *testing.T) { // load and compare ActionRun actionRun := unittest.AssertExistsAndLoadBean(t, &actions_model.ActionRun{RepoID: baseRepo.ID}) - assert.Equal(t, addWorkflowToBaseResp.Commit.SHA, actionRun.CommitSHA) + assert.Equal(t, addFileToForkedResp.Commit.SHA, actionRun.CommitSHA) assert.Equal(t, actions_module.GithubEventPullRequestTarget, actionRun.TriggerEvent) }) } |