summaryrefslogtreecommitdiffstats
path: root/t/warn.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2014-04-03 10:27:04 -0400
committerJesse Luehrs <doy@tozt.net>2014-04-03 10:28:58 -0400
commita8b31060a0fe668b36d0dceb83c2b1a7621ab988 (patch)
tree84e8ba6da7b2f57b5d2ec9f41e5c8af61a8db3f8 /t/warn.t
parent5e66ba386054290656265f85898d87f2c4572fc9 (diff)
downloaddist-checkconflicts-a8b31060a0fe668b36d0dceb83c2b1a7621ab988.tar.gz
dist-checkconflicts-a8b31060a0fe668b36d0dceb83c2b1a7621ab988.zip
stop using use_ok
Diffstat (limited to 't/warn.t')
-rw-r--r--t/warn.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/warn.t b/t/warn.t
index 1058eb9..3f3ce33 100644
--- a/t/warn.t
+++ b/t/warn.t
@@ -5,7 +5,7 @@ use Test::More;
use lib 't/lib/warn';
{
- use_ok("Foo::Conflicts");
+ require Foo::Conflicts;
my $warning = '';
local $SIG{__WARN__} = sub { $warning .= $_[0] };