Skip to content

Commit 5cb0758

Browse files
resolves PR conflicts with main
1 parent 68abde2 commit 5cb0758

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

pkg/github/projects_test.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -668,12 +668,7 @@ func Test_ListProjectItems(t *testing.T) {
668668
mock.EndpointPattern{Pattern: "/orgs/{org}/projectsV2/{project}/items", Method: http.MethodGet},
669669
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
670670
q := r.URL.Query()
671-
<<<<<<< HEAD
672-
fieldParams := q.Get("fields")
673-
if fieldParams == "123,456,789" {
674-
=======
675671
if q.Get("fields") == "123,456,789" {
676-
>>>>>>> 1235e58 (pagination, prompt updates)
677672
w.WriteHeader(http.StatusOK)
678673
_, _ = w.Write(mock.MustMarshal(orgItems))
679674
return
@@ -875,12 +870,7 @@ func Test_GetProjectItem(t *testing.T) {
875870
mock.EndpointPattern{Pattern: "/orgs/{org}/projectsV2/{project}/items/{item_id}", Method: http.MethodGet},
876871
http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
877872
q := r.URL.Query()
878-
<<<<<<< HEAD
879-
fieldParams := q.Get("fields")
880-
if fieldParams == "123,456" {
881-
=======
882873
if q.Get("fields") == "123,456" {
883-
>>>>>>> 1235e58 (pagination, prompt updates)
884874
w.WriteHeader(http.StatusOK)
885875
_, _ = w.Write(mock.MustMarshal(orgItem))
886876
return

0 commit comments

Comments
 (0)