Skylark -> Starlark for various methods, variables, constants, etc.

PiperOrigin-RevId: 312506803
diff --git a/src/test/java/com/google/devtools/build/lib/skyframe/PackageFunctionTest.java b/src/test/java/com/google/devtools/build/lib/skyframe/PackageFunctionTest.java
index 71ebab7..a6bb469 100644
--- a/src/test/java/com/google/devtools/build/lib/skyframe/PackageFunctionTest.java
+++ b/src/test/java/com/google/devtools/build/lib/skyframe/PackageFunctionTest.java
@@ -564,7 +564,7 @@
   }
 
   @Test
-  public void testTransitiveSkylarkDepsStoredInPackage() throws Exception {
+  public void testTransitiveStarlarkDepsStoredInPackage() throws Exception {
     scratch.file("foo/BUILD", "load('//bar:ext.bzl', 'a')");
     scratch.file("bar/BUILD");
     scratch.file("bar/ext.bzl", "load('//baz:ext.bzl', 'b')", "a = b");
@@ -597,7 +597,7 @@
   }
 
   @Test
-  public void testNonExistingSkylarkExtension() throws Exception {
+  public void testNonExistingStarlarkExtension() throws Exception {
     reporter.removeHandler(failFastHandler);
     scratch.file(
         "test/skylark/BUILD",
@@ -620,7 +620,7 @@
   }
 
   @Test
-  public void testNonExistingSkylarkExtensionFromExtension() throws Exception {
+  public void testNonExistingStarlarkExtensionFromExtension() throws Exception {
     reporter.removeHandler(failFastHandler);
     scratch.file(
         "test/skylark/extension.bzl",
@@ -649,7 +649,7 @@
   }
 
   @Test
-  public void testSymlinkCycleWithSkylarkExtension() throws Exception {
+  public void testSymlinkCycleWithStarlarkExtension() throws Exception {
     reporter.removeHandler(failFastHandler);
     Path extensionFilePath = scratch.resolve("/workspace/test/skylark/extension.bzl");
     FileSystemUtils.ensureSymbolicLink(extensionFilePath, PathFragment.create("extension.bzl"));