Skip to content

Commit

Permalink
[!]: update for performance (need some testing) v2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Lars Moelleken committed Dec 8, 2015
1 parent 831ff0e commit 27843f8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/unit/Swift/MessageTest.php
Expand Up @@ -10,7 +10,9 @@ class Swift_MessageTest extends \PHPUnit_Framework_TestCase
public function testCloning()
{
$message1 = new Swift_Message('subj', 'body', 'ctype');
$message1->setUseMemorySpool(true);
$message2 = new Swift_Message('subj', 'body', 'ctype');
$message1->setUseMemorySpool(true);
$message1_clone = clone $message1;

$this->_recursiveObjectCloningCheck($message1, $message2, $message1_clone);
Expand Down

0 comments on commit 27843f8

Please sign in to comment.