From d844a16e83fb2f6e17e7135c6b10f018db066d9d Mon Sep 17 00:00:00 2001 From: Marc Khouzam Date: Fri, 4 Apr 2014 08:00:21 -0400 Subject: [PATCH] Bug 426834 - Double backslashes are no longer removed. Change-Id: I91a8f7a6f10cab9d24149cc4fd29e867e0040b10 Signed-off-by: Marc Khouzam --- .../command/commands/TestMIBreakInsertCommand.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/TestMIBreakInsertCommand.java b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/TestMIBreakInsertCommand.java index d12153056ab..bfc57b3e299 100644 --- a/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/TestMIBreakInsertCommand.java +++ b/dsf-gdb/org.eclipse.cdt.tests.dsf.gdb/src/org/eclipse/cdt/dsf/mi/service/command/commands/TestMIBreakInsertCommand.java @@ -29,16 +29,6 @@ import org.junit.Test; */ public class TestMIBreakInsertCommand { - @Test - public void pathShouldNotContainDoubleBackSlashes() { - MIBreakInsert target = new MIBreakInsert(new TestContext(), false, - false, null, 1, "c:\\test\\this\\path:14", 4, false); - - assertEquals("Wrong syntax for command", - "-break-insert -i 1 -p 4 c:\\test\\this\\path:14\n", target - .constructCommand()); - } - @Test public void pathWithSlashesShouldNotBeSubstituted() { MIBreakInsert target = new MIBreakInsert(new TestContext(), false,