15 lines
638 B
Diff
15 lines
638 B
Diff
Index: MooseX-Types-Parameterizable-0.08/t/05-pod-examples.t
|
|
===================================================================
|
|
--- MooseX-Types-Parameterizable-0.08.orig/t/05-pod-examples.t
|
|
+++ MooseX-Types-Parameterizable-0.08/t/05-pod-examples.t
|
|
@@ -236,7 +236,8 @@ use Test::More;
|
|
|
|
Test::More::is MySpecialVarchar([40])->coerce("abc"), 'abc';
|
|
Test::More::is_deeply( MySpecialVarchar([40])->coerce([qw/d e f/]), [qw/d e f/]);
|
|
- Test::More::is MySpecialVarchar([40])->coerce({a=>1, b=>2}), 'ab';
|
|
+ # hashes are random, so you can't know
|
|
+ #Test::More::is MySpecialVarchar([40])->coerce({a=>1, b=>2}), 'ab';
|
|
}
|
|
|
|
{
|