File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
core/src/test/java/io/grpc/internal Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 {
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments