This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
ext/FileCache/t/ - fixup paralleism issues in tests
[perl5.git] / ext / FileCache / t / 05override.t
index 7edd5a3..0314ca3 100644 (file)
@@ -2,12 +2,12 @@
 
 use FileCache;
 
-END { unlink("Foo_Bar") }
+END { unlink("Foo_Bar_ov") }
 
 use Test::More tests => 1;
 
 {# Test 5: that close is overridden properly within the caller
-     cacheout local $_ = "Foo_Bar";
+     cacheout local $_ = "Foo_Bar_ov";
      print $_ "Hello World\n";
      close($_);
      ok(!fileno($_));