From 75fd846399eca816ab1b65ba6d201016596fca1d Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 22 Apr 2011 00:48:29 -0400 Subject: [PATCH] Unit Tests - Fixed hook tests that broke when 'hooks' was renamed to 'extensions'. --- test/hook.on-exit.t | 2 +- test/hook.on-launch.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/hook.on-exit.t b/test/hook.on-exit.t index 0fd82326a..c6f7d132d 100755 --- a/test/hook.on-exit.t +++ b/test/hook.on-exit.t @@ -34,7 +34,7 @@ use Test::More tests => 8; if (open my $fh, '>', 'hook.rc') { print $fh "data.location=.\n", - "hooks=on\n", + "extensions=on\n", "hook.on-exit=" . $ENV{'PWD'} . "/hook:test\n"; close $fh; ok (-r 'hook.rc', 'Created hook.rc'); diff --git a/test/hook.on-launch.t b/test/hook.on-launch.t index 08f81b067..985e10ba9 100755 --- a/test/hook.on-launch.t +++ b/test/hook.on-launch.t @@ -34,7 +34,7 @@ use Test::More tests => 8; if (open my $fh, '>', 'hook.rc') { print $fh "data.location=.\n", - "hooks=on\n", + "extensions=on\n", "hook.on-launch=" . $ENV{'PWD'} . "/hook:test\n"; close $fh; ok (-r 'hook.rc', 'Created hook.rc');