Skip to content

Commit 58429fc

Browse files
committed
style: clear code
1 parent dbbf0ca commit 58429fc

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

tests/Feature/WikiImportCommandTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ protected function setUp(): void
1717
{
1818
parent::setUp();
1919
$this->createWikiResponse = json_decode(
20-
file_get_contents($this->dataDir . 'coding/createWikiResponse.json'),
20+
file_get_contents($this->dataDir . 'coding/CreateWikiResponse.json'),
2121
true
2222
)['Response']['Data'];
2323
}

tests/Unit/CodingWikiTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected function setUp(): void
3939

4040
public function testCreateWiki()
4141
{
42-
$responseBody = file_get_contents($this->dataDir . 'coding/createWikiResponse.json');
42+
$responseBody = file_get_contents($this->dataDir . 'coding/CreateWikiResponse.json');
4343
$codingToken = $this->faker->md5;
4444
$codingProjectUri = $this->faker->slug;
4545
$article = [
@@ -74,7 +74,7 @@ public function testCreateWiki()
7474

7575
public function testCreateUploadToken()
7676
{
77-
$responseBody = file_get_contents($this->dataDir . 'coding/createUploadTokenResponse.json');
77+
$responseBody = file_get_contents($this->dataDir . 'coding/CreateUploadTokenResponse.json');
7878
$codingToken = $this->faker->md5;
7979
$codingProjectUri = $this->faker->slug;
8080
$fileName = $this->faker->word;

0 commit comments

Comments
 (0)