aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/java/com
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com')
-rw-r--r--src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java b/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java
index a61790d645..d94780f2ff 100644
--- a/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java
+++ b/src/test/java/com/google/devtools/build/lib/actions/CustomCommandLineTest.java
@@ -69,13 +69,6 @@ public class CustomCommandLineTest {
}
@Test
- public void testArtifactJoinStringArgs() {
- CustomCommandLine cl = CustomCommandLine.builder().addJoinStrings("--path", ":",
- ImmutableList.of("foo", "bar")).build();
- assertEquals(ImmutableList.of("--path", "foo:bar"), cl.arguments());
- }
-
- @Test
public void testArtifactExecPathArgs() {
CustomCommandLine cl = CustomCommandLine.builder().addExecPath("--path", artifact1).build();
assertEquals(ImmutableList.of("--path", "dir/file1.txt"), cl.arguments());