Skip to content

Commit

Permalink
Issue #616: actually call the functions
Browse files Browse the repository at this point in the history
and turn them into subtests
  • Loading branch information
bschmalhofer committed Nov 5, 2020
1 parent cd9c95a commit e5cc80b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/test/CommunicationLog/DB.t
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ sub TestObjectLogDelete {
return;
}

sub TestObjectLogGet {
sub TestObjectLogGet {
my %Param = @_;

my $GetRandomPriority = sub {
Expand Down Expand Up @@ -626,8 +626,8 @@ warn Dumper( $Test, $CommunicationListAfterStop );
}
}

$TestObjectLogDelete();
$TestObjectLogGet();
$TestObjectLogEntryList();
subtest 'LogDelete' => \&TestObjectLogDelete;
subtest 'LogGet' => \&TestObjectLogGet;
subtest 'LogEntryList' => \&TestObjectLogEntryList;

$Self->DoneTesting();
done_testing();

0 comments on commit e5cc80b

Please sign in to comment.