Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2018-01-18 09:23:32 +0000
committerAlexander Kurtakov2018-01-18 09:23:32 +0000
commitf9bd8122d849d0ddf5752ffffa34e81e785b526c (patch)
treeb5363307430bb0127578992280a795b7f6fa6b11
parentad7e7f15aca42271b2978be32b7e5fda7ef819ef (diff)
downloadeclipse.pde.build-f9bd8122d849d0ddf5752ffffa34e81e785b526c.tar.gz
eclipse.pde.build-f9bd8122d849d0ddf5752ffffa34e81e785b526c.tar.xz
eclipse.pde.build-f9bd8122d849d0ddf5752ffffa34e81e785b526c.zip
Bug 528899 - testDirectorLogging fails on all platformsI20180119-0110I20180118-2000
Adjust the expected output to match the separation of namespace and name with ; instead of space as it was until now. Change-Id: I55d4e025a482e16827cac305afef8525fd34115b Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java
index 336b1513..9eabe1a6 100644
--- a/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java
+++ b/org.eclipse.pde.build.tests/src/org/eclipse/pde/build/internal/tests/p2/PublishingTests.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2008, 2017 IBM Corporation and others. All rights reserved.
+ * Copyright (c) 2008, 2018 IBM Corporation and others. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 which accompanies this distribution,
* and is available at http://www.eclipse.org/legal/epl-v10.html
@@ -1595,7 +1595,7 @@ public class PublishingTests extends P2TestCase {
}
assertLogContainsLines(buildFolder.getFile("director.log"), new String[] { "Installation failed.",
- "Missing requirement: rcp.product 1.0.0.I10232 (uid.product 1.0.0.I10232) requires 'foo bar [1.0.0,1.0.0]' but it could not be found" });
+ "Missing requirement: rcp.product 1.0.0.I10232 (uid.product 1.0.0.I10232) requires 'foo; bar [1.0.0,1.0.0]' but it could not be found" });
}
public void testBug272907() throws Exception {

Back to the top