Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / symfony / dependency-injection / Tests / Argument / RewindableGeneratorTest.php
index 1415869a4f1e92a005d000c32cb71fd523e7027a..31e3f11fec35a349074455ab17e10e44e54212cd 100644 (file)
@@ -46,7 +46,7 @@ class RewindableGeneratorTest extends TestCase
         $this->assertSame(0, $called, 'Count callback is called lazily');
         $this->assertCount(3, $generator);
 
-        count($generator);
+        \count($generator);
 
         $this->assertSame(1, $called, 'Count callback is called only once');
     }