summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-03-07 15:07:37 -0600
committerJesse Luehrs <doy@tozt.net>2013-03-07 15:07:37 -0600
commit86055b0a996f853dc4516872f15a7f447d882ebb (patch)
tree72334236fa892b6706134e9b389489b6de487add
parent223b29cd1303b1ba1d077adf6900bbfaa9a31d2d (diff)
downloadbread-board-declare-86055b0a996f853dc4516872f15a7f447d882ebb.tar.gz
bread-board-declare-86055b0a996f853dc4516872f15a7f447d882ebb.zip
fix test for hash randomization
-rw-r--r--t/infer.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/infer.t b/t/infer.t
index 34703a0..c269582 100644
--- a/t/infer.t
+++ b/t/infer.t
@@ -75,7 +75,7 @@ use Test::Fatal;
my $c = My::Container->new;
like(
exception { $c->baz_no_infer },
- qr/^Attribute \(bar\) is required/,
+ qr/^Attribute \((?:foo|bar)\) is required/,
"not inferred when not requested"
);
}