Author: ias
Date: Thu Aug 5 07:43:06 2004
New Revision: 35736
Modified:
incubator/beehive/trunk/controls/test/tmp/units/java/composition/DeclarativeTest.java
Log:
Fix "," to ";" at the end of statements.
Modified:
incubator/beehive/trunk/controls/test/tmp/units/java/composition/DeclarativeTest.java
==============================================================================
---
incubator/beehive/trunk/controls/test/tmp/units/java/composition/DeclarativeTest.java
(original)
+++
incubator/beehive/trunk/controls/test/tmp/units/java/composition/DeclarativeTest.java
Thu Aug 5 07:43:06 2004
@@ -32,8 +32,8 @@
public void testInstantiate() throws Exception
{
Assert.assertNotNull(outerControl);
- Assert.assertNotNull(outerControl.getDeclaredNestedControl()),
- Assert.assertNotNull(outerControl.getDeclaredNestedControl2()),
+ Assert.assertNotNull(outerControl.getDeclaredNestedControl());
+ Assert.assertNotNull(outerControl.getDeclaredNestedControl2());
}
/**