Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorTomasz Zarna2010-02-15 10:31:18 +0000
committerTomasz Zarna2010-02-15 10:31:18 +0000
commit269b868e8dbfed1ca5bab6d0518562a8aa7d0904 (patch)
tree3f0ed59b6ed0dea09c5631f8afa0c2064b7d7a19 /tests
parent8f951e6335544ac934a803000be2761329278a08 (diff)
downloadeclipse.platform.team-269b868e8dbfed1ca5bab6d0518562a8aa7d0904.tar.gz
eclipse.platform.team-269b868e8dbfed1ca5bab6d0518562a8aa7d0904.tar.xz
eclipse.platform.team-269b868e8dbfed1ca5bab6d0518562a8aa7d0904.zip
bug 302840: [Tests] NPE in testNullInfoMap in N20100213-2000
Diffstat (limited to 'tests')
-rw-r--r--tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/CVSProjectSetImportTest.java9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/CVSProjectSetImportTest.java b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/CVSProjectSetImportTest.java
index 34abef5b4..9e08bf95f 100644
--- a/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/CVSProjectSetImportTest.java
+++ b/tests/org.eclipse.team.tests.cvs.core/src/org/eclipse/team/tests/ccvs/ui/CVSProjectSetImportTest.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2010 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
@@ -64,13 +64,6 @@ public class CVSProjectSetImportTest extends TestCase {
// repositories. It's used to create combo-boxes on the Import Project Set
// dialog.
- public void testNullInfoMap() {
- IProject[] projects = new IProject[] { null };
- Map alternativeMap = CVSRepositoryLocationMatcher
- .prepareSuggestedRepositoryLocations(projects, null);
- assertNull(alternativeMap);
- }
-
public void testEmptyInfoMap() {
IProject[] projects = new IProject[] { null };
Map infoMap = new HashMap();

Back to the top