Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Still tests fail, but need to pull
  • Loading branch information
JJ committed Feb 8, 2019
1 parent 42fe4be commit b73e32e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/Unbitrot/Utils.pm6
Expand Up @@ -11,7 +11,7 @@ constant \submit-url = “https://api.github.com/repos/$repo/issues”;
#| Returns all issues from the repo
sub get-issues(:$token, :$url = issues-url) is export {
my @issues;
my $cur-url = url;
my $cur-url = $url;
loop {
note $cur-url;
my $resp = await Cro::HTTP::Client.get: $cur-url,
Expand Down
2 changes: 1 addition & 1 deletion t/1.t6
Expand Up @@ -5,7 +5,7 @@ use v6;
use Test;
use Unbitrot::Utils;

ok Unbitrot::Utils::url, "{Unbitrot::Utils::url} is declared";
ok Unbitrot::Utils::submit-url, "{Unbitrot::Utils::submit-url} is declared";

# my $file = "data/blin-output.txt".IO.e??"data/blin-output.txt"!!"../data/blin-output.txt";
# my @not-ok-modules = modules-not-ok( $file );
Expand Down

0 comments on commit b73e32e

Please sign in to comment.