Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jdt-ui-dev] Expected failure in JDT/UI refactoring test


Hi,

With the fix for 89299, I get a failure in the JDT/UI refactoring test (InlineMethodTests.testVarargs3). This can be fixed by updating the resources or by changing the code formatter default.

See patch below:
Index: test plugin/org/eclipse/jdt/testplugin/TestOptions.java
===================================================================
RCS file: /home/eclipse/org.eclipse.jdt.ui.tests/test plugin/org/eclipse/jdt/testplugin/TestOptions.java,v
retrieving revision 1.5
diff -u -r1.5 TestOptions.java
--- test plugin/org/eclipse/jdt/testplugin/TestOptions.java        25 Feb 2005 15:15:25 -0000        1.5
+++ test plugin/org/eclipse/jdt/testplugin/TestOptions.java        28 Mar 2005 22:15:50 -0000
@@ -581,7 +581,7 @@
                 this.compact_else_if = true;
                 this.keep_guardian_clause_on_one_line = false;
                 this.keep_else_statement_on_same_line = false;
-                this.keep_empty_array_initializer_on_one_line = false;
+                this.keep_empty_array_initializer_on_one_line = true;
                 this.keep_simple_if_on_one_line = false;
                 this.keep_then_statement_on_same_line = false;
                 this.number_of_empty_lines_to_preserve = 1;


I might get more failures. I will send another message if this is the case once the tests are done.

Olivier

Back to the top