updated coding rules.
[utils] / system / general / src / test / java / org / wamblee / system / adapters / AdapterTestCase.java
index cf67b247b481c45c5f41240c001ad7387409c51c..6dca8fe7facf5ccbde57d16cbc76a4797ea7f735 100644 (file)
@@ -24,14 +24,14 @@ import junit.framework.TestCase;
 
 public class AdapterTestCase extends TestCase {
        
-       protected Scope _scope;
+       protected Scope scope;
        static EventTracker<String> EVENT_TRACKER;
 
        @Override
        protected void setUp() throws Exception {
                super.setUp();
                EVENT_TRACKER = new EventTracker<String>();
-               _scope = new DefaultScope(new ProvidedInterface[0]);
+               scope = new DefaultScope(new ProvidedInterface[0]);
        }
 
 }