Skip to content

Commit

Permalink
Fix build after rc4 cherrypicks (bazelbuild#14581)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wyverald committed Jan 14, 2022
1 parent a233aaa commit 38117d4
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -753,7 +753,7 @@ public void complexTypedAttribute() throws Exception {

SkyKey skyKey = BzlLoadValue.keyForBuild(Label.parseAbsoluteUnchecked("//:data.bzl"));
EvaluationResult<BzlLoadValue> result =
evaluator.evaluate(ImmutableList.of(skyKey), evaluationContext);
driver.evaluate(ImmutableList.of(skyKey), evaluationContext);
if (result.hasError()) {
throw result.getError().getException();
}
Expand Down Expand Up @@ -795,7 +795,7 @@ public void complexTypedAttribute_default() throws Exception {

SkyKey skyKey = BzlLoadValue.keyForBuild(Label.parseAbsoluteUnchecked("//:data.bzl"));
EvaluationResult<BzlLoadValue> result =
evaluator.evaluate(ImmutableList.of(skyKey), evaluationContext);
driver.evaluate(ImmutableList.of(skyKey), evaluationContext);
if (result.hasError()) {
throw result.getError().getException();
}
Expand Down

0 comments on commit 38117d4

Please sign in to comment.