Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
DrHyde committed Apr 12, 2022
1 parent 117e806 commit b1027a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
3.12 2022-04-12

- Fix a minor bug in the tests that caused failures when nothing was actually wrong

3.11 2022-04-07

- Make the order of args to `cpandeps` script unimportant
Expand Down
2 changes: 1 addition & 1 deletion lib/CPAN/FindDependencies.pm
Expand Up @@ -22,7 +22,7 @@ require Exporter;
@ISA = qw(Exporter);
@EXPORT_OK = qw(finddeps);

$VERSION = '3.11';
$VERSION = '3.12';

use constant MAXINT => ~0;

Expand Down
2 changes: 1 addition & 1 deletion t/cpandeps-script.t
Expand Up @@ -44,7 +44,7 @@ my($stdout, $stderr) = capture { system(
help
)
)};
$stderr =~ s/stty: stdin isn't a terminal\s//;
$stderr =~ s/stty: (standard input: Not a tty|stdin isn't a terminal)\s+//;
is($stderr, '', "... no unexpected whining on STDERR");
like($stdout, qr/cpandeps.*perl.*5.8.8.*CPAN::FindDependencies/, "Can spew out some help");

Expand Down

0 comments on commit b1027a7

Please sign in to comment.