Skip to content

Commit

Permalink
fix(fixture): updated api.github.com/add-labels-to-issue
Browse files Browse the repository at this point in the history
BREAKING CHANGE: api.github.com/add-labels-to-issue has changed

```diff
[
   ...
   {
     response: [
       {
       }
       {
       }
       {
       }
     ]
     headers: {
-      content-length: "526"
+      content-length: "583"
     }
   }
 ]
```
  • Loading branch information
octokitbot committed Nov 20, 2019
1 parent 6648939 commit f8123e9
Showing 1 changed file with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,11 @@
"method": "post",
"path": "/repos/octokit-fixture-org/add-labels-to-issue/issues/1/labels",
"body": {
"labels": ["Foo", "bAr", "baZ"]
"labels": [
"Foo",
"bAr",
"baZ"
]
},
"status": 200,
"response": [
Expand All @@ -100,23 +104,26 @@
"url": "https://api.github.com/repos/octokit-fixture-org/add-labels-to-issue/labels/Foo",
"name": "Foo",
"color": "ededed",
"default": false
"default": false,
"description": null
},
{
"id": 1001,
"node_id": "MDA6RW50aXR5MQ==",
"url": "https://api.github.com/repos/octokit-fixture-org/add-labels-to-issue/labels/bAr",
"name": "bAr",
"color": "ededed",
"default": false
"default": false,
"description": null
},
{
"id": 1002,
"node_id": "MDA6RW50aXR5MQ==",
"url": "https://api.github.com/repos/octokit-fixture-org/add-labels-to-issue/labels/baZ",
"name": "baZ",
"color": "ededed",
"default": false
"default": false,
"description": null
}
],
"reqheaders": {
Expand All @@ -131,7 +138,7 @@
"access-control-expose-headers": "ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type",
"cache-control": "private, max-age=60, s-maxage=60",
"connection": "close",
"content-length": "526",
"content-length": "583",
"content-security-policy": "default-src 'none'",
"content-type": "application/json; charset=utf-8",
"date": "Tue, 10 Oct 2017 16:00:00 GMT",
Expand Down

0 comments on commit f8123e9

Please sign in to comment.