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.
2 parents fb837be + 3d9f34b commit a8b6f66Copy full SHA for a8b6f66
tests/NginxTest.php
@@ -28,7 +28,7 @@ public function test_install_nginx_configuration_places_nginx_base_configuration
28
29
$files->shouldReceive('putAsUser')->andReturnUsing(function ($path, $contents) {
30
$this->assertSame('/usr/local/etc/nginx/nginx.conf', $path);
31
- $this->assertTrue(strpos($contents, 'include '.VALET_HOME_PATH.'/Nginx/*') !== false);
+ $this->assertContains('include '.VALET_HOME_PATH.'/Nginx/*', $contents);
32
})->once();
33
34
swap(Filesystem::class, $files);
0 commit comments