Thanks to visit codestin.com Credit goes to github.com
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 329b181 commit fdd1002Copy full SHA for fdd1002
src/Symfony/Component/HttpKernel/Tests/HttpCache/HttpCacheTest.php
@@ -564,6 +564,11 @@ public function testHitsCachedResponseWithMaxAgeDirective()
564
565
public function testDegradationWhenCacheLocked()
566
{
567
+ // skip test on Windows, it breaks permissions
568
+ if ('\\' === DIRECTORY_SEPARATOR) {
569
+ $this->markTestSkipped('This test cannot run on Windows.');
570
+ }
571
+
572
$this->cacheConfig['stale_while_revalidate'] = 10;
573
574
// The prescence of Last-Modified makes this cacheable (because Response::isValidateable() then).
0 commit comments