mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Revert.
This commit is contained in:
parent
a49710a25a
commit
c07a9f8750
1 changed files with 8 additions and 8 deletions
|
@ -209,9 +209,9 @@ public class ContentAssistTests extends TestCase {
|
|||
|
||||
results = getResults( cu, c2.indexOf( "::" ) + 2 ); //$NON-NLS-1$
|
||||
assertEquals( results.length, 3 );
|
||||
assertEquals( results[0].getDisplayString(), "IDIOT" ); //$NON-NLS-1$
|
||||
assertEquals( results[1].getDisplayString(), "NORMAL" ); //$NON-NLS-1$
|
||||
assertEquals( results[2].getDisplayString(), "CHEAT" ); //$NON-NLS-1$
|
||||
assertEquals( results[0].getDisplayString(), "CHEAT" ); //$NON-NLS-1$
|
||||
assertEquals( results[1].getDisplayString(), "IDIOT" ); //$NON-NLS-1$
|
||||
assertEquals( results[2].getDisplayString(), "NORMAL" ); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
public void testBug72559() throws Exception {
|
||||
|
@ -229,9 +229,9 @@ public class ContentAssistTests extends TestCase {
|
|||
ICompletionProposal [] results = getResults( cu, code.indexOf( "v " ) + 1 ); //$NON-NLS-1$
|
||||
|
||||
assertEquals( results.length, 4 );
|
||||
assertEquals( results[0].getDisplayString(), "virtual" ); //$NON-NLS-1$
|
||||
assertEquals( results[1].getDisplayString(), "volatile" ); //$NON-NLS-1$
|
||||
assertEquals( results[2].getDisplayString(), "var : float" ); //$NON-NLS-1$
|
||||
assertEquals( results[3].getDisplayString(), "void" ); //$NON-NLS-1$
|
||||
assertEquals( results[0].getDisplayString(), "var : float" ); //$NON-NLS-1$
|
||||
assertEquals( results[1].getDisplayString(), "virtual" ); //$NON-NLS-1$
|
||||
assertEquals( results[2].getDisplayString(), "void" ); //$NON-NLS-1$
|
||||
assertEquals( results[3].getDisplayString(), "volatile" ); //$NON-NLS-1$
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue