mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Fix content assist JUnit failures
This commit is contained in:
parent
7157df9421
commit
a538cde466
1 changed files with 7 additions and 7 deletions
|
@ -126,7 +126,7 @@ public class ContentAssistTests extends BaseUITestCase {
|
||||||
|
|
||||||
IResource [] members = project.members();
|
IResource [] members = project.members();
|
||||||
for( int i = 0; i < members.length; i++ ){
|
for( int i = 0; i < members.length; i++ ){
|
||||||
if( members[i].getName().equals( ".project" ) || members[i].getName().equals( ".cdtproject" ) ) //$NON-NLS-1$ //$NON-NLS-2$
|
if( members[i].getName().equals( ".project" ) || members[i].getName().equals( ".cproject" ) ) //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
continue;
|
continue;
|
||||||
if (members[i].getName().equals(".settings"))
|
if (members[i].getName().equals(".settings"))
|
||||||
continue;
|
continue;
|
||||||
|
@ -136,7 +136,7 @@ public class ContentAssistTests extends BaseUITestCase {
|
||||||
/*boo*/
|
/*boo*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
project= null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected IFile importFile(String fileName, String contents ) throws Exception{
|
protected IFile importFile(String fileName, String contents ) throws Exception{
|
||||||
|
|
Loading…
Add table
Reference in a new issue