Skip to content

Commit 5d2796f

Browse files
committed
Renamed integration test files
1 parent eaa7e70 commit 5d2796f

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/integration/IntegrationTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ protected function getJsonString($filename)
2222
*/
2323
public function testParseSimpleResource()
2424
{
25-
$string = $this->getJsonString('01_simple_resource.js');
25+
$string = $this->getJsonString('01_simple_resource.json');
2626
$document = Helper::parse($string);
2727

2828
$this->assertInstanceOf('Art4\JsonApiClient\Document', $document);
@@ -50,7 +50,7 @@ public function testParseSimpleResource()
5050
*/
5151
public function testParseSimpleResourceIdentifier()
5252
{
53-
$string = $this->getJsonString('02_simple_resource_identifier.js');
53+
$string = $this->getJsonString('02_simple_resource_identifier.json');
5454
$document = Helper::parse($string);
5555

5656
$this->assertInstanceOf('Art4\JsonApiClient\Document', $document);
@@ -74,7 +74,7 @@ public function testParseSimpleResourceIdentifier()
7474
*/
7575
public function testParseResourceObject()
7676
{
77-
$string = $this->getJsonString('03_resource_object.js');
77+
$string = $this->getJsonString('03_resource_object.json');
7878
$document = Helper::parse($string);
7979

8080
$this->assertInstanceOf('Art4\JsonApiClient\Document', $document);
@@ -131,7 +131,7 @@ public function testParseResourceObject()
131131
*/
132132
public function testParseCompleteResourceObjectWithMultipleRelationships()
133133
{
134-
$string = $this->getJsonString('04_complete_document_with_multiple_relationships.js');
134+
$string = $this->getJsonString('04_complete_document_with_multiple_relationships.json');
135135
$document = Helper::parse($string);
136136

137137
$this->assertInstanceOf('Art4\JsonApiClient\Document', $document);

0 commit comments

Comments
 (0)