Skip to content

Commit

Permalink
fix test release/documentation-hide
Browse files Browse the repository at this point in the history
  • Loading branch information
mickeyn committed Apr 24, 2016
1 parent 04c1c80 commit e0f09d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/release/documentation-hide.t
Expand Up @@ -25,9 +25,9 @@ ok( $release->first, 'Release is first' );
my @files = $idx->type('file')->filter(
{
and => [
{ term => { 'file.author' => $release->author } },
{ term => { 'file.release' => $release->name } },
{ exists => { field => 'file.module.name' } },
{ term => { author => $release->author } },
{ term => { release => $release->name } },
{ exists => { field => 'module.name' } },
]
}
)->all;
Expand All @@ -51,7 +51,7 @@ ok( $release->first, 'Release is first' );
and => [
{ term => { author => $release->author } },
{ term => { release => $release->name } },
{ exists => { field => 'file.documentation' } }
{ exists => { field => 'documentation' } }
]
}
)->all;
Expand Down

0 comments on commit e0f09d6

Please sign in to comment.