summaryrefslogtreecommitdiff
path: root/dist/Safe/t/safeuniversal.t
diff options
context:
space:
mode:
Diffstat (limited to 'dist/Safe/t/safeuniversal.t')
-rw-r--r--dist/Safe/t/safeuniversal.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/Safe/t/safeuniversal.t b/dist/Safe/t/safeuniversal.t
index 95867c5a1f..ad2377562c 100644
--- a/dist/Safe/t/safeuniversal.t
+++ b/dist/Safe/t/safeuniversal.t
@@ -26,7 +26,7 @@ my $r = $c->reval($no_warn_redef . q!
(bless[],"Foo")->isa("Foo");
!);
-is( $r, "pwned", "isa overriden in compartment" );
+is( $r, "pwned", "isa overridden in compartment" );
is( (bless[],"Foo")->isa("Foo"), 1, "... but not outside" );
sub Foo::foo {}
@@ -36,7 +36,7 @@ $r = $c->reval($no_warn_redef . q!
(bless[],"Foo")->can("foo");
!);
-is( $r, "pwned", "can overriden in compartment" );
+is( $r, "pwned", "can overridden in compartment" );
is( (bless[],"Foo")->can("foo"), \&Foo::foo, "... but not outside" );
$r = $c->reval(q!