Skip to content

Commit

Permalink
more debug output for failed test
Browse files Browse the repository at this point in the history
  • Loading branch information
jrryjcksn committed Oct 6, 2021
1 parent 26f797a commit 94e4653
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/acceptance/test/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,11 @@ func verifyPRCreated(repoAbsolutePath, appName string, providerName gitproviders

prs, err := or.PullRequests().List(ctx)
Expect(err).ShouldNot(HaveOccurred())
fmt.Printf("PRS: %#+v\n", prs)

for _, pr := range prs {
fmt.Printf("PR: %#+v\n", pr.Get())
}

Expect(len(prs)).To(Equal(1))
}

Expand Down

0 comments on commit 94e4653

Please sign in to comment.