diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-12-28 16:44:56 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-12-28 16:44:56 -0800 |
commit | 9fc60eb3f528bacd721b8852138528a61c555fb7 (patch) | |
tree | 2761c7029545ae612ca4ccfab8c6898722e96bc2 | |
parent | 4964f676ab84eee840a22ed626f8a1a15b9370dd (diff) | |
download | perl-9fc60eb3f528bacd721b8852138528a61c555fb7.tar.gz |
Remove ‘require Config’ from ref.t
82b84d04879 removed the code that needed it.
-rw-r--r-- | t/op/ref.t | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/t/op/ref.t b/t/op/ref.t index c686fa87c3..19a44bb943 100644 --- a/t/op/ref.t +++ b/t/op/ref.t @@ -798,7 +798,6 @@ for (3) { eval { $_ = 4 }; like $@, qr/^Modification of a read-only/, 'assignment to value aliased to literal number'; - require Config; eval { ${\$_} = 4 }; like $@, qr/^Modification of a read-only/, 'refgen does not allow assignment to value aliased to literal number'; @@ -807,7 +806,6 @@ for ("4eounthouonth") { eval { $_ = 4 }; like $@, qr/^Modification of a read-only/, 'assignment to value aliased to literal string'; - require Config; eval { ${\$_} = 4 }; like $@, qr/^Modification of a read-only/, 'refgen does not allow assignment to value aliased to literal string'; |