Skip to content

Commit bf5ef91

Browse files
committed
pint
1 parent 8734830 commit bf5ef91

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Integration/Routing/RoutingTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
preg_match('/<body[^>]*class=["\']([^"\']*)["\']/', $this->value, $matches);
1111
expect($matches)->toHaveCount(2, 'No body tag with class attribute found');
1212
expect($matches[1])->toContain($class);
13+
1314
return $this;
1415
});
1516

@@ -40,7 +41,7 @@
4041
'http_errors' => false,
4142
]);
4243

43-
$response = $client->request('GET', 'http://web:8080/non-existent-' . time());
44+
$response = $client->request('GET', 'http://web:8080/non-existent-'.time());
4445
expect($response->getStatusCode())->toBe(404);
4546
expect((string) $response->getBody())->toContain('Page not found');
4647
expect((string) $response->getBody())->toHaveBodyClass('error404');

0 commit comments

Comments
 (0)