···11+https://github.com/gfx/p5-Data-Clone/pull/322+33+From 43102a83d15aedc61e5904eb5a6dab33c3c02b40 Mon Sep 17 00:00:00 200144+From: Yves Orton <demerphq@gmail.com>55+Date: Thu, 9 Feb 2023 16:24:45 +010066+Subject: [PATCH] t/07_stack.t - isn't is deprecated, use isnt instead77+88+As of 5.37.8 use of apostrophe for a package separator is deprecated,99+and in 5.40 it will be removed entirely. Switch to isnt() instead1010+of isn't().1111+---1212+ t/07_stack.t | 2 +-1313+ 1 file changed, 1 insertion(+), 1 deletion(-)1414+1515+diff --git a/t/07_stack.t b/t/07_stack.t1616+index 165e6a5..a750366 1006441717+--- a/t/07_stack.t1818++++ b/t/07_stack.t1919+@@ -17,6 +17,6 @@ use Data::Clone;2020+2121+ my $before = bless [], Bar::;2222+ my $after = clone($before);2323+-isn't $after, $before, 'stack reallocation during callback';2424++isnt $after, $before, 'stack reallocation during callback';2525+2626+ done_testing;