Skip to content

Commit

Permalink
adds isInstall correct condition in arquillian setup
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofthejars authored and bartoszmajsak committed Jan 23, 2017
1 parent 3b682a1 commit 3e23a7e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public boolean install() {
@Override
public boolean isInstalled() {
return hasEffectiveDependency(createFrameworkDependency())
&& hasEffectiveDependency(createArquillianDependency());
&& (hasEffectiveDependency(createArquillianDependency()) || hasEffectiveDependency(createArquillianStandaloneDependency()));
}

@Override
Expand Down

0 comments on commit 3e23a7e

Please sign in to comment.