aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com/google/devtools/build/lib/remote/CasPathConverterTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/google/devtools/build/lib/remote/CasPathConverterTest.java')
-rw-r--r--src/test/java/com/google/devtools/build/lib/remote/CasPathConverterTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/remote/CasPathConverterTest.java b/src/test/java/com/google/devtools/build/lib/remote/CasPathConverterTest.java
index e7b846fe70..5ba4ef0435 100644
--- a/src/test/java/com/google/devtools/build/lib/remote/CasPathConverterTest.java
+++ b/src/test/java/com/google/devtools/build/lib/remote/CasPathConverterTest.java
@@ -51,7 +51,7 @@ public class CasPathConverterTest {
Path path = fs.getPath("/foo");
FileSystemUtils.writeContentAsLatin1(path, "foobar");
assertThat(converter.apply(fs.getPath("/foo")))
- .isEqualTo("//machine/blobs/3858f62230ac3c915f300c664312c63f/6");
+ .isEqualTo("bytestream://machine/blobs/3858f62230ac3c915f300c664312c63f/6");
}
@Test
@@ -62,6 +62,6 @@ public class CasPathConverterTest {
Path path = fs.getPath("/foo");
FileSystemUtils.writeContentAsLatin1(path, "foobar");
assertThat(converter.apply(fs.getPath("/foo")))
- .isEqualTo("//machine/projects/bazel/blobs/3858f62230ac3c915f300c664312c63f/6");
+ .isEqualTo("bytestream://machine/projects/bazel/blobs/3858f62230ac3c915f300c664312c63f/6");
}
}