Skip to content

Commit

Permalink
Don't export auth.use_value to Postman (closes #701)
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed Aug 20, 2023
1 parent 1f94ac5 commit 6a9d51b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/Writing/PostmanCollectionWriter.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ protected function generateAuthObject(): array
'bearer' => [
[
'key' => $this->config->get('auth.name'),
'value' => $this->config->get('auth.use_value'),
'type' => 'string',
],
],
Expand Down
1 change: 0 additions & 1 deletion tests/Fixtures/collection.json
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@
"bearer": [
{
"key": "key",
"value": null,
"type": "string"
}
]
Expand Down
1 change: 0 additions & 1 deletion tests/Unit/PostmanCollectionWriterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,6 @@ public function auth_info_is_added_correctly()
'bearer' => [
[
'key' => null,
'value' => null,
'type' => 'string',
],
],
Expand Down

0 comments on commit 6a9d51b

Please sign in to comment.