Skip to content

Commit

Permalink
Add dash(-) in filenames to serve as breaking point when selecting files
Browse files Browse the repository at this point in the history
  • Loading branch information
ajcastro committed Sep 7, 2021
1 parent 148b1d3 commit 606a519
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Tests/ExampleCreator.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,16 +195,16 @@ protected function mergeResponses()
public function getWritables()
{
return [
"01-url_params@{$this->testMethod}.json" => [
"01-url_params-@{$this->testMethod}.json" => [
'url_params' => $this->mergeUrlParams(),
],
"02-query_params@{$this->testMethod}.json" => [
"02-query_params-@{$this->testMethod}.json" => [
'query_params' => $this->mergeQueryParams(),
],
"03-body_params@{$this->testMethod}.json" => [
"03-body_params-@{$this->testMethod}.json" => [
'body_params' => $this->mergeBodyParams(),
],
"04-responses@{$this->testMethod}.json" => [
"04-responses-@{$this->testMethod}.json" => [
'responses' => $this->mergeResponses(),
],
];
Expand Down

0 comments on commit 606a519

Please sign in to comment.