We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44f862c commit f39fbc1Copy full SHA for f39fbc1
test/unit/Message/ResponseTest.php
@@ -73,7 +73,7 @@ public function testGetRpcErrorMessageIsNull()
73
{
74
$response = new Response(200);
75
76
- $this->assertNull($response->getRpcErrorCode());
+ $this->assertNull($response->getRpcErrorMessage());
77
}
78
79
public function testGetRpcErrorData()
@@ -82,7 +82,7 @@ public function testGetRpcErrorData()
82
'error' => ['data' => array()]
83
]));
84
85
- $this->assertEquals(array(), $response->getRpcErrorMessage());
+ $this->assertEquals(array(), $response->getRpcErrorData());
86
87
88
public function testGetRpcErrorDataIsNull()
0 commit comments