summaryrefslogtreecommitdiff
path: root/Examples/test-suite/perl5/packageoption_runme.pl
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/test-suite/perl5/packageoption_runme.pl')
-rw-r--r--Examples/test-suite/perl5/packageoption_runme.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/Examples/test-suite/perl5/packageoption_runme.pl b/Examples/test-suite/perl5/packageoption_runme.pl
index debea78e1..d94a7a1fd 100644
--- a/Examples/test-suite/perl5/packageoption_runme.pl
+++ b/Examples/test-suite/perl5/packageoption_runme.pl
@@ -14,11 +14,11 @@ sub ok_not ($;$) {
ok($test, $name);
}
-my $a = C::A->new();
+my $a = CommonPackage::A->new();
-isa_ok($a, 'C::A');
+isa_ok($a, 'CommonPackage::A');
-my $b = C::B->new();
+my $b = CommonPackage::B->new();
-isa_ok($b, 'C::B');
+isa_ok($b, 'CommonPackage::B');