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 e3d3958 commit cb97dd7Copy full SHA for cb97dd7
src/TestSuite/DriverTestCase.php
@@ -123,7 +123,8 @@ public function testExportAndImport()
123
{
124
foreach (self::$validExtensions as $extension) {
125
$this->loadFixtures();
126
- $backup = $this->getAbsolutePath(sprintf('example.%s', $extension));
+ $backup = uniqid('example_');
127
+ $backup = $this->getAbsolutePath($extension ? $backup . '.' . $extension : $backup);
128
129
//Initial records. 3 articles and 6 comments
130
$initial = $this->getAllRecords();
0 commit comments