From: Dave Rolsky Date: Sun, 12 Oct 2008 16:44:57 +0000 (+0000) Subject: Fix typo in test X-Git-Tag: 0.59~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=25518076e4b721e6872e0b328b31da56a5e7dc88;p=gitmo%2FMoose.git Fix typo in test --- diff --git a/t/040_type_constraints/026_normalize_type_name.t b/t/040_type_constraints/026_normalize_type_name.t index db94421..4393fa8 100644 --- a/t/040_type_constraints/026_normalize_type_name.t +++ b/t/040_type_constraints/026_normalize_type_name.t @@ -124,7 +124,7 @@ ok my $subtype_b1 = subtype( 'subtype_b1' => as 'HashRef[Int|Str]' ), => ok my $subtype_b2 = subtype( 'subtype_b2' => as 'HashRef[Int | Str]' ), => 'created subtype_b2'; -ok my $subtype_b3 = subtype( 'subtype_b2' => as 'HashRef[Str|Int]' ), => +ok my $subtype_b3 = subtype( 'subtype_b3' => as 'HashRef[Str|Int]' ), => 'created subtype_b3'; is $subtype_b1->parent->name, $subtype_b2->parent->name => 'names match';