|
From: David C. <dc...@us...> - 2005-07-30 21:35:03
|
Update of /cvsroot/rubyeclipse/org.rubypeople.rdt.ui.tests/src/org/rubypeople/rdt/internal/ui In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19638/src/org/rubypeople/rdt/internal/ui Modified Files: TS_UiTests.java Log Message: Fixed space-for-tab substitution to work the way most editors do. Index: TS_UiTests.java =================================================================== RCS file: /cvsroot/rubyeclipse/org.rubypeople.rdt.ui.tests/src/org/rubypeople/rdt/internal/ui/TS_UiTests.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** TS_UiTests.java 28 Mar 2005 23:22:49 -0000 1.3 --- TS_UiTests.java 30 Jul 2005 21:34:40 -0000 1.4 *************** *** 1,4 **** --- 1,6 ---- package org.rubypeople.rdt.internal.ui; + import org.rubypeople.rdt.internal.ui.rubyeditor.TC_TabExpander; + import junit.framework.Test; import junit.framework.TestSuite; *************** *** 11,14 **** --- 13,17 ---- suite.addTestSuite(TC_StackTraceLine.class); suite.addTestSuite(TC_ResourceAdapterFactory.class); + suite.addTestSuite(TC_TabExpander.class); return suite; } |