summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorToby Inkster <mail@tobyinkster.co.uk>2013-06-28 12:42:45 +0100
committerToby Inkster <mail@tobyinkster.co.uk>2013-06-28 12:42:45 +0100
commitd30f8ff2bc3fcf858cb2c60a4bf21f3aa4e0d5fd (patch)
treec0b1d7eb8aa37c78df474dc96a78ce45e283a6b4 /t
parent196f19ec5d337463ba66737100f639354289db9e (diff)
tidying, etc
Diffstat (limited to 't')
-rw-r--r--t/05haveimissedanytypes.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/05haveimissedanytypes.t b/t/05haveimissedanytypes.t
index c1888ff..53c5d20 100644
--- a/t/05haveimissedanytypes.t
+++ b/t/05haveimissedanytypes.t
@@ -80,14 +80,14 @@ sub constraint_for
for my $type (@types_to_check)
{
- my $got = constraint_for($type);
+ my $got = constraint_for($type);
isa_ok($got, "Type::Tiny", "constraint_for('$type')");
is("$got", "$type", "Type constraint returned for '$type' looks right.");
}
for my $type (@class_types_to_check)
{
- my $got = constraint_for($type);
+ my $got = constraint_for($type);
isa_ok($got, "Type::Tiny::Class", "constraint_for('$type')");
is($got->class, $type, "Type constraint returned for '$type' looks right.");
}