Re-use the precomputed universe key in WalkableGraphFactory#prepareAndGet.
--
MOS_MIGRATED_REVID=139357569
diff --git a/src/test/java/com/google/devtools/build/lib/skyframe/PrepareDepsOfPatternsFunctionTest.java b/src/test/java/com/google/devtools/build/lib/skyframe/PrepareDepsOfPatternsFunctionTest.java
index 869423e..b29ec04 100644
--- a/src/test/java/com/google/devtools/build/lib/skyframe/PrepareDepsOfPatternsFunctionTest.java
+++ b/src/test/java/com/google/devtools/build/lib/skyframe/PrepareDepsOfPatternsFunctionTest.java
@@ -161,10 +161,10 @@
}
/**
- * PrepareDepsOfPatternsFunction always keeps going despite any target pattern parsing errors,
- * in keeping with the original behavior of {@link SkyframeExecutor#prepareAndGet}, which
- * always used {@code keepGoing=true} during target pattern parsing because it was responsible
- * for ensuring that queries had a complete graph to work on.
+ * PrepareDepsOfPatternsFunction always keeps going despite any target pattern parsing errors, in
+ * keeping with the original behavior of {@link WalkableGraph.WalkableGraphFactory#prepareAndGet},
+ * which always used {@code keepGoing=true} during target pattern parsing because it was
+ * responsible for ensuring that queries had a complete graph to work on.
*/
@Test
public void testParsingProblemsNoKeepGoing() throws Exception {