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 1141721 commit 9d40c63Copy full SHA for 9d40c63
tests/Unit/RenderPdfIoServiceTest.php
@@ -134,11 +134,11 @@ public function testRenderReturnsFileUrl(): void
134
public function testRenderAsyncThrowsErrorBecauseMissingIdentifier(): void
135
{
136
$this->expectException(RenderPdfIoException::class);
137
+ $this->expectExceptionMessage('You must set an unique identifier when using the async mode.');
138
139
$service = new RenderPdfIoService();
140
$status = $service->renderAsync(new RenderPdfOptions(
141
'hihi',
- identifier: 'hehe'
142
));
143
144
$this->assertTrue($status);
0 commit comments