From 12e7981cc3afb8926cddac52fd45b3ca02a59a22 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 22 Jan 2010 08:12:24 -0800 Subject: [PATCH] Fix a typo in a test. --- t/Asset.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/Asset.t b/t/Asset.t index c60d7a4f2..a35e04fe9 100644 --- a/t/Asset.t +++ b/t/Asset.t @@ -21,7 +21,7 @@ use Test::Deep; use Test::Exception; use WebGUI::Exception; -plan tests => 50; +plan tests => 51; my $session = WebGUI::Test->session; @@ -265,7 +265,7 @@ my $session = WebGUI::Test->session; { note "getDefault"; my $asset = WebGUI::Asset->getDefault($session); - $asset->isa('WebGUI::Asset::Wobject::Layout'); + isa_ok $asset, 'WebGUI::Asset::Wobject::Layout'; } {