Skip to content

Commit d632c21

Browse files
authored
Merge pull request #149 from armanist/master
Correcting feature tests response data handling
2 parents 816cf03 + b081ebf commit d632c21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Feature/modules/Api/PostControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function testModuleApiSinglePostEndpoint()
7676
$this->assertEquals('success', $response->get('status'));
7777
$this->assertArrayHasKey('data', $response->all());
7878

79-
$rawData = $response->get('data')->getValue();
79+
$rawData = $response->get('data');
8080

8181
$this->assertArrayHasKey('uuid', $rawData);
8282
$this->assertArrayHasKey('title', $rawData);

0 commit comments

Comments
 (0)