Skip to content
This repository was archived by the owner on Jan 8, 2024. It is now read-only.

Commit 3acd806

Browse files
committed
Fixed damn build
1 parent 545f199 commit 3acd806

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/Command/PhpfastcacheSetCommandTest.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ public function testCommandSetCacheItem()
4848
'--no-interaction' => true
4949
]);
5050

51-
$this->assertRegExp('/Cache item "' . $key . '" set to "' . $value . '" for ' . $ttl . ' seconds/', $commandTester->getDisplay());
51+
// Travis fix (.*) due to weird console screen width that truncate to next line
52+
$this->assertRegExp('/Cache item "' . $key . '" set to "' . $value . '" for ' . $ttl . '(.*)seconds/', $commandTester->getDisplay());
5253
}
5354

5455
/**

0 commit comments

Comments
 (0)