Commit 55ad715773a56b71a56a80f438b5863a633beed8
1 parent
eac502ac
Exists in
master
fix hash reference
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
t/app.t
... | ... | @@ -11,7 +11,7 @@ my $info = $CoprStatus::info; |
11 | 11 | ok(ref($info), 'HASH'); |
12 | 12 | foreach my $key (keys %{$info}) { |
13 | 13 | ok(ref($info->{$key}), 'HASH'); |
14 | - ok($info->{$key}->{}->{'git'}->{'master'}); | |
14 | + ok($info->{$key}->{'git'}->{'master'}); | |
15 | 15 | ok($info->{$key}->{'copr'}->{'v4'}); |
16 | 16 | ok($info->{$key}->{'copr'}->{'v5'}); |
17 | 17 | like($info->{$key}->{'copr'}->{'v4'}, qr/[[:ascii:]]+-[[:ascii:]]+/); | ... | ... |