Skip to content

Commit

Permalink
style: clear code
Browse files Browse the repository at this point in the history
  • Loading branch information
sinkcup committed Oct 20, 2021
1 parent dbbf0ca commit 58429fc
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Feature/WikiImportCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ protected function setUp(): void
{
parent::setUp();
$this->createWikiResponse = json_decode(
file_get_contents($this->dataDir . 'coding/createWikiResponse.json'),
file_get_contents($this->dataDir . 'coding/CreateWikiResponse.json'),
true
)['Response']['Data'];
}
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/CodingWikiTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected function setUp(): void

public function testCreateWiki()
{
$responseBody = file_get_contents($this->dataDir . 'coding/createWikiResponse.json');
$responseBody = file_get_contents($this->dataDir . 'coding/CreateWikiResponse.json');
$codingToken = $this->faker->md5;
$codingProjectUri = $this->faker->slug;
$article = [
Expand Down Expand Up @@ -74,7 +74,7 @@ public function testCreateWiki()

public function testCreateUploadToken()
{
$responseBody = file_get_contents($this->dataDir . 'coding/createUploadTokenResponse.json');
$responseBody = file_get_contents($this->dataDir . 'coding/CreateUploadTokenResponse.json');
$codingToken = $this->faker->md5;
$codingProjectUri = $this->faker->slug;
$fileName = $this->faker->word;
Expand Down
File renamed without changes.

0 comments on commit 58429fc

Please sign in to comment.