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 8734830 commit bf5ef91Copy full SHA for bf5ef91
tests/Integration/Routing/RoutingTest.php
@@ -10,6 +10,7 @@
10
preg_match('/<body[^>]*class=["\']([^"\']*)["\']/', $this->value, $matches);
11
expect($matches)->toHaveCount(2, 'No body tag with class attribute found');
12
expect($matches[1])->toContain($class);
13
+
14
return $this;
15
});
16
@@ -40,7 +41,7 @@
40
41
'http_errors' => false,
42
]);
43
- $response = $client->request('GET', 'http://web:8080/non-existent-' . time());
44
+ $response = $client->request('GET', 'http://web:8080/non-existent-'.time());
45
expect($response->getStatusCode())->toBe(404);
46
expect((string) $response->getBody())->toContain('Page not found');
47
expect((string) $response->getBody())->toHaveBodyClass('error404');
0 commit comments