Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
supress 'Code object coerced to string' warning
  • Loading branch information
dwarring committed Aug 17, 2014
1 parent 680acb0 commit de0bc28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/advent2012-day13.t
Expand Up @@ -114,12 +114,12 @@ for @set-and-bag-ops {

if $unicode-op.defined {
my $result = $unicode-op($s1, $s2);
ok $result-type.grep({$result.isa($_)}), "set $unicode-op result type";
ok $result-type.grep({$result.isa($_)}), "{$unicode-op.name} return type";
}

if $texas-op.defined {
my $result = $texas-op($s1, $s2);
ok $result-type.grep({$result.isa($_)}), "set $texas-op result type";
ok $result-type.grep({$result.isa($_)}), "{$texas-op.name} return type";
}

}
Expand Down

0 comments on commit de0bc28

Please sign in to comment.