Apply suggested fixes that were missed in http://https://github.com/bazelbuild/bazel/commit/5b4b7a3ebb83a8c93d8f68ade7bf1242c8590256

PiperOrigin-RevId: 172099288
diff --git a/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java b/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java
index 9d3d23b..e24dca8 100644
--- a/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java
+++ b/src/test/java/com/google/devtools/build/lib/skyframe/PackageLookupFunctionTest.java
@@ -444,17 +444,15 @@
       return params;
     }
 
-    private String description;
-    private String repositoryPath;
-    private String packagePath;
-    private String expectedCorrectedPackageIdentifier;
+    private final String repositoryPath;
+    private final String packagePath;
+    private final String expectedCorrectedPackageIdentifier;
 
     public CorrectedLocalRepositoryTest(
-        String description,
+        String unusedDescription,
         String repositoryPath,
         String packagePath,
         String expectedCorrectedPackageIdentifier) {
-      this.description = description;
       this.repositoryPath = repositoryPath;
       this.packagePath = packagePath;
       this.expectedCorrectedPackageIdentifier = expectedCorrectedPackageIdentifier;
@@ -467,7 +465,6 @@
 
     @Test
     public void testCorrectPackageDetection_relativePath() throws Exception {
-      String fullPackagePath = packagePath + "/BUILD";
       scratch.overwriteFile(
           "WORKSPACE", "local_repository(name='local', path='" + repositoryPath + "')");
       scratch.file(PathFragment.create(repositoryPath).getRelative("WORKSPACE").getPathString());
@@ -495,7 +492,6 @@
 
     @Test
     public void testCorrectPackageDetection_absolutePath() throws Exception {
-      String fullPackagePath = packagePath + "/BUILD";
       scratch.overwriteFile(
           "WORKSPACE",
           "local_repository(name='local', path=__workspace_dir__ + '/" + repositoryPath + "')");