Shorten variable name.
This commit is contained in:
parent
9d864172e5
commit
0fa986a76f
1 changed files with 3 additions and 3 deletions
|
@ -19,10 +19,10 @@ require 't/CreateTestDB.pl';
|
|||
|
||||
my $dbh = get_test_dbh();
|
||||
|
||||
my $supporters = new Supporters($dbh, "testcmd");
|
||||
my $sp = new Supporters($dbh, "testcmd");
|
||||
|
||||
is($dbh, $supporters->dbh());
|
||||
is("testcmd", $supporters->ledgerCmd());
|
||||
is($dbh, $sp->dbh());
|
||||
is("testcmd", $sp->ledgerCmd());
|
||||
|
||||
$dbh->disconnect();
|
||||
|
||||
|
|
Loading…
Reference in a new issue