fixing the type constraints
[gitmo/Moose.git] / t / 040_type_constraints / 009_union_types_and_coercions.t
index c9a42b8..147859b 100644 (file)
@@ -51,7 +51,7 @@ BEGIN {
     
     has 'raw_body' => (
         is      => 'rw',
-        isa     => 'IO::String | IO::File',
+        isa     => 'IO::String|IO::File',
         coerce  => 1,
         default => sub { IO::String->new() },
     );