From 06591a2dc2c931e6046a0e34e517cd3429194aec Mon Sep 17 00:00:00 2001 From: Bruno Ramos Date: Thu, 12 Aug 2021 23:48:47 +0200 Subject: [PATCH] Fix double // breaking tests under cygwin --- t/mirror.t | 2 +- t/mux-ordered.t | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/t/mirror.t b/t/mirror.t index 18f6ae3..3f3a427 100644 --- a/t/mirror.t +++ b/t/mirror.t @@ -14,7 +14,7 @@ use lib 't/lib'; use CommonTests; my $cwd = getcwd; -my $test_mirror = "file:///$cwd/t/CPAN"; +my $test_mirror = "file://$cwd/t/CPAN"; my $mailrc = "01mailrc.txt"; my $packages = "02packages.details.txt"; diff --git a/t/mux-ordered.t b/t/mux-ordered.t index 054f927..bd0fc8a 100644 --- a/t/mux-ordered.t +++ b/t/mux-ordered.t @@ -12,7 +12,7 @@ use lib 't/lib'; use CommonTests; my $cwd = getcwd; -my $test_mirror = "file:///$cwd/t/CPAN"; +my $test_mirror = "file://$cwd/t/CPAN"; my $local_pkg = "t/CUSTOM/uncompressed"; my $cache = File::Temp->newdir;