From ae51c67dbefefc42df1535dd3792c0699b7ca1d0 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 29 Jul 2008 22:09:48 +0000 Subject: [PATCH] fix typo in ad type checking --- t/AdSpace/Ad.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/AdSpace/Ad.t b/t/AdSpace/Ad.t index a213c0fea..3cef0f77a 100644 --- a/t/AdSpace/Ad.t +++ b/t/AdSpace/Ad.t @@ -59,7 +59,7 @@ SKIP: { isa_ok($ad,"WebGUI::AdSpace::Ad"); isa_ok($ad->session, 'WebGUI::Session'); - isa($ad->get('type'), 'text', 'property set during object creation'); + is($ad->get('type'), 'text', 'property set during object creation'); my $ad2 = WebGUI::AdSpace::Ad->new($session, $ad->getId); cmp_deeply($ad2, $ad, "new returns an identical object to the original what was created");