Skip to content

Commit

Permalink
Enable debug output during tests - increases coverage!
Browse files Browse the repository at this point in the history
  • Loading branch information
Synchro committed Apr 3, 2014
1 parent c8d663a commit cc99349
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/phpmailerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public function setUp()
include './testbootstrap.php'; //Overrides go in here
}
$this->Mail = new PHPMailer;
$this->Mail->SMTPDebug = 4; //Full debug output
$this->Mail->Priority = 3;
$this->Mail->Encoding = '8bit';
$this->Mail->CharSet = 'iso-8859-1';
Expand Down Expand Up @@ -1262,7 +1263,6 @@ public function testDKIM()
$this->Mail->Subject .= ': DKIM signing';
$this->Mail->Body = 'This message is DKIM signed.';
$this->buildBody();
//$this->Mail->SMTPDebug = 2;
$privatekeyfile = 'dkim_private.key';
//Make a new key pair
//(2048 bits is the recommended minimum key length -
Expand Down

0 comments on commit cc99349

Please sign in to comment.