Skip to content

Commit 3abf21c

Browse files
author
Roman Bylbas
committed
Fixed tests
Signed-off-by: Roman Bylbas <romka.bulbas@gmail.com>
1 parent f53ab5c commit 3abf21c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/Functional/Rpc/RpcClientTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function testGetDeploy(): void
5959
public function testGetDeployByFakeHash(): void
6060
{
6161
$fakeDeployHash = '1234567891234567891234567891234567891234567891234567891234567891';
62-
$errorMessage = 'deploy not know';
62+
$errorMessage = 'No such deploy';
6363

6464
$this->expectException(RpcError::class);
6565
$this->expectExceptionMessage($errorMessage);
@@ -89,7 +89,7 @@ public function testGetBlockByHash(Block $latestBlock): void
8989
public function testGetBlockByFakeHash(): void
9090
{
9191
$fakeBlockHash = '1234567891234567891234567891234567891234567891234567891234567891';
92-
$errorMessage = 'block not know';
92+
$errorMessage = 'No such block';
9393

9494
$this->expectException(RpcError::class);
9595
$this->expectExceptionMessage($errorMessage);

0 commit comments

Comments
 (0)