]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/commitdiff
Style nits
authorVincent Pit <vince@profvince.com>
Sun, 23 Aug 2009 23:08:24 +0000 (01:08 +0200)
committerVincent Pit <vince@profvince.com>
Sun, 23 Aug 2009 23:08:24 +0000 (01:08 +0200)
lib/Test/Valgrind/Session.pm

index 95aaa011b9bf7e3c414b27da8e27306f5da89879..f47e4759228e608a636756884a1584eb1ef9a0f3 100644 (file)
@@ -215,7 +215,9 @@ sub _run {
   if (not $self->no_def_supp) {
    my $def_supp = $self->def_supp_file;
    if (defined $def_supp and not -e $def_supp) {
-    $self->report(Test::Valgrind::Report->new_diag("Generating suppressions..."));
+    $self->report(Test::Valgrind::Report->new_diag(
+     "Generating suppressions..."
+    ));
     require Test::Valgrind::Suppressions;
     Test::Valgrind::Suppressions->generate(
      tool    => $self->tool,
@@ -223,7 +225,9 @@ sub _run {
      target  => $def_supp,
     );
     $self->_croak('Couldn\'t generate suppressions') unless -e $def_supp;
-    $self->report(Test::Valgrind::Report->new_diag("Suppressions for this perl stored in $def_supp"));
+    $self->report(Test::Valgrind::Report->new_diag(
+     "Suppressions for this perl stored in $def_supp"
+    ));
    }
   }
   push @supp_args, '--suppressions=' . $_ for $self->suppressions;
@@ -310,7 +314,7 @@ sub do_suppressions { $_[0]->action->do_suppressions }
 
 =head2 C<report_class>
 
-Calls C<< ->action->report_class >> with the current session object as the sole argument.
+Calls C<< ->action->report_class >> with the current session object as the unique argument.
 
 =cut