Skip to content

Commit 38117d4

Browse files
authored
Fix build after rc4 cherrypicks (bazelbuild#14581)
1 parent a233aaa commit 38117d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/google/devtools/build/lib/bazel/bzlmod/ModuleExtensionResolutionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ public void complexTypedAttribute() throws Exception {
753753

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

796796
SkyKey skyKey = BzlLoadValue.keyForBuild(Label.parseAbsoluteUnchecked("//:data.bzl"));
797797
EvaluationResult<BzlLoadValue> result =
798-
evaluator.evaluate(ImmutableList.of(skyKey), evaluationContext);
798+
driver.evaluate(ImmutableList.of(skyKey), evaluationContext);
799799
if (result.hasError()) {
800800
throw result.getError().getException();
801801
}

0 commit comments

Comments
 (0)