Skip to content

Commit 3a97cfd

Browse files
committed
Change local name, add TODO
1 parent abb3211 commit 3a97cfd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

api/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dependencies {
5454
extension = "signature"
5555
}
5656
}
57-
// Temporarily disabled until StatusException is fixed.
57+
// TODO: Temporarily disabled until StatusException is fixed.
5858
// Context: https://github.com/grpc/grpc-java/pull/11066
5959
//signature (libraries.signature.android) {
6060
// artifact {

core/src/test/java/io/grpc/internal/SpiffeUtilTest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,14 +248,14 @@ public void setUp() throws Exception {
248248
}
249249

250250
private String copyFileToTmp(String fileName) throws Exception {
251-
File tempFilePath = tempFolder.newFile(fileName);
251+
File tempFile = tempFolder.newFile(fileName);
252252
try (InputStream resourceStream = SpiffeUtilTest.class.getClassLoader()
253253
.getResourceAsStream(TEST_DIRECTORY_PREFIX + fileName);
254-
OutputStream fileStream = new FileOutputStream(tempFilePath)) {
254+
OutputStream fileStream = new FileOutputStream(tempFile)) {
255255
ByteStreams.copy(resourceStream, fileStream);
256256
fileStream.flush();
257257
}
258-
return tempFilePath.toString();
258+
return tempFile.toString();
259259
}
260260

261261
@Test

0 commit comments

Comments
 (0)