Skip to content

Commit

Permalink
Removed $t variable and print_r line
Browse files Browse the repository at this point in the history
  • Loading branch information
driftking301 committed Nov 10, 2017
1 parent bf704d6 commit ad1e26b
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
namespace CfdiUtilsTests\Validate\Cfdi33\Standard;

use CfdiUtils\Elements\Cfdi33\Comprobante;
use CfdiUtils\Nodes\Node;
use CfdiUtils\Validate\Cfdi33\Standard\ConceptoImpuestos;
use CfdiUtils\Validate\Status;
use CfdiUtilsTests\Validate\ValidateTestCase;
Expand Down Expand Up @@ -66,12 +65,11 @@ public function providerTrasladoTipoFactorExento()
public function testTrasladosTipoFactorInvalidCase($tasaOCuota, $importe)
{
$comprobante = $this->validComprobante();
$t = $comprobante->addConcepto()->addTraslado([
$comprobante->addConcepto()->addTraslado([
'TipoFactor' => 'Exento',
'TasaOCuota' => $tasaOCuota,
'Importe' => $importe,
]);
print_r($t);
$this->runValidate();
$this->assertStatusEqualsCode(Status::error(), 'CONCEPIMPC03');
}
Expand Down

0 comments on commit ad1e26b

Please sign in to comment.