Skip to content

Commit

Permalink
Fix "no writable path" found in curli-install.t
Browse files Browse the repository at this point in the history
This test relied on a bug in rakudo that made it create the repository
directory during completely unrelated actions. When that bug is fixed,
the test would fail due to the non-existing repository directory.
  • Loading branch information
niner committed Dec 28, 2015
1 parent d4a77bd commit f9ff1b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions S11-repository/curli-install.t
@@ -1,12 +1,12 @@
use v6;
use Test;

constant $path = 't/spec/packages/curli-install';
constant $path = 't/spec/packages/curi-install';
use lib "inst#$path";

use Test;
plan 18;

rm_rf $path.IO if $path.IO.e;
$path.IO.mkdir;

# Tests on non-existing repository path
{
Expand Down

0 comments on commit f9ff1b3

Please sign in to comment.