Skip to content

Commit cb97dd7

Browse files
committed
fixed
1 parent e3d3958 commit cb97dd7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/TestSuite/DriverTestCase.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ public function testExportAndImport()
123123
{
124124
foreach (self::$validExtensions as $extension) {
125125
$this->loadFixtures();
126-
$backup = $this->getAbsolutePath(sprintf('example.%s', $extension));
126+
$backup = uniqid('example_');
127+
$backup = $this->getAbsolutePath($extension ? $backup . '.' . $extension : $backup);
127128

128129
//Initial records. 3 articles and 6 comments
129130
$initial = $this->getAllRecords();

0 commit comments

Comments
 (0)