diff options
author | Father Chrysostomos <sprout@cpan.org> | 2013-06-16 06:52:35 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2013-06-18 06:22:07 -0700 |
commit | 6daa8d508141a8730166526fd60c532162680a2f (patch) | |
tree | 1ff527741cafbca7994984949526c51e229db5e3 /t/re | |
parent | ce6a2be471f129b02ee821e8da34a9ff9d291921 (diff) | |
download | perl-6daa8d508141a8730166526fd60c532162680a2f.tar.gz |
subst.t: Rename test
This was copied and pasted from the previous test.
Diffstat (limited to 't/re')
-rw-r--r-- | t/re/subst.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/re/subst.t b/t/re/subst.t index 8acd54f7d3..c1e0d03945 100644 --- a/t/re/subst.t +++ b/t/re/subst.t @@ -863,7 +863,7 @@ $_ = "hello"; local *a = *1; s/e(.)\1/a$a/g; } -is $_, 'halo', 's/pat/$alias_to_match_var/'; +is $_, 'halo', 's/pat/foo$alias_to_match_var/'; # Last-used pattern containing re-evals that modify "constant" rhs { local *a; |