(no commit message)
[utils] / system / general / src / test / java / org / wamblee / system / adapters / ClassAdapterTest.java
index 722adc704d35129d7e238bab8baa6fa68c635d5b..e2c146cb752f6fa075ffbafa4233029ab19d6875 100644 (file)
@@ -12,7 +12,7 @@
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  * See the License for the specific language governing permissions and
  * limitations under the License.
- */ 
+ */
 package org.wamblee.system.adapters;
 
 import org.wamblee.system.container.Container;
@@ -45,7 +45,7 @@ public class ClassAdapterTest extends AdapterTestCase {
 
         Scope scope = container.start();
         AssertionUtils.assertEquals(new String[] { "x1(hello)", "x4(x1)" },
-            EVENT_TRACKER.getEvents(Thread.currentThread()).toArray());
+            getEventTracker().getEvents(Thread.currentThread()).toArray());
 
         Object obj1 = scope.getRuntime(x1Adapter);
         assertTrue(obj1 instanceof X1);
@@ -80,7 +80,7 @@ public class ClassAdapterTest extends AdapterTestCase {
 
         Scope scope = container.start();
         AssertionUtils.assertEquals(new String[] { "x1(hello)", "x4(x1)",
-            "x8(x1)", "x8.setX4(x4)" }, EVENT_TRACKER.getEvents(
+            "x8(x1)", "x8.setX4(x4)" }, getEventTracker().getEvents(
             Thread.currentThread()).toArray());
 
         Object obj1 = scope.getRuntime(x1Adapter);