Shorten variable name.

This commit is contained in:
Bradley M. Kuhn 2015-12-06 18:55:01 -08:00
parent 9d864172e5
commit 0fa986a76f

View file

@ -19,10 +19,10 @@ require 't/CreateTestDB.pl';
my $dbh = get_test_dbh(); my $dbh = get_test_dbh();
my $supporters = new Supporters($dbh, "testcmd"); my $sp = new Supporters($dbh, "testcmd");
is($dbh, $supporters->dbh()); is($dbh, $sp->dbh());
is("testcmd", $supporters->ledgerCmd()); is("testcmd", $sp->ledgerCmd());
$dbh->disconnect(); $dbh->disconnect();