Skip to content

Commit 9b93fe1

Browse files
committed
Fix expected exception message in resource test
1 parent 4c0f560 commit 9b93fe1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Unit/ResourceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function testItReturnsResourceNameForServer(): void
3434
public function testItThrowsExceptionIfMtaInstanceNotPassed(): void
3535
{
3636
$this->expectException(Exception::class);
37-
$this->expectExceptionMessage('Resource someName can not be called because server is not defined');
37+
$this->expectExceptionMessage('Resource someName can not be called because Mta manager is not defined');
3838

3939
$resource = new Resource('someName');
4040
$resource->call('someFunction');

0 commit comments

Comments
 (0)