Remove unnecessary use floating around in code.

@oalders noted in patch review on a pull request:
> Looks like this might be left over from debugging?

And he was indeed correct. ;)

I've removed the use.  Data::Dumper isn't used by this test.
This commit is contained in:
Bradley M. Kuhn 2015-01-02 11:44:02 -05:00
parent 7aeeb15fcf
commit dd503a3080

View file

@ -79,8 +79,6 @@ my $ts = new Business::PayPal::API::TransactionSearch( %args );
my $resp = $ts->TransactionSearch(StartDate => $startdate);
use Data::Dumper;
ok(scalar @{$resp} > 0, "Some transactions found");
my($profileID, %possibleTransactionIDs);