projects
/
gitmo/Moose.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
583a5a5
)
Check that stderr is empty string, not undef
Dave Rolsky [Fri, 14 Oct 2011 21:30:46 +0000 (16:30 -0500)]
t/metaclasses/custom_error_class.t
patch
|
blob
|
blame
|
history
diff --git
a/t/metaclasses/custom_error_class.t
b/t/metaclasses/custom_error_class.t
index
81ef9f1
..
a4408e1
100644
(file)
--- a/
t/metaclasses/custom_error_class.t
+++ b/
t/metaclasses/custom_error_class.t
@@
-68,7
+68,7
@@
use Test::Requires {
::stderr_is(
sub { __PACKAGE__->meta->make_immutable },
- undef,
+ q{},
'no warnings when calling make_immutable with a custom error class'
);
}