This is an automated email from the ASF dual-hosted git repository. mthl pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-plugins.git
The following commit(s) were added to refs/heads/trunk by this push: new c0db78c Fixed: Use correct package name for ‘OrderNotificationTests.groovy’ c0db78c is described below commit c0db78c750e863219edba5c7631c9d426283cfea Author: Mathieu Lirzin <m...@gnu.org> AuthorDate: Tue Nov 26 00:03:18 2019 +0100 Fixed: Use correct package name for ‘OrderNotificationTests.groovy’ This test belongs to the ‘ecommerce’ plugin not to the ‘order’ plugin. --- .../groovy/org/apache/ofbiz/ecommerce/OrderNotificationTests.groovy | 2 +- ecommerce/testdef/EcommerceTest.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/OrderNotificationTests.groovy b/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/OrderNotificationTests.groovy index 038f21c..660bea7 100644 --- a/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/OrderNotificationTests.groovy +++ b/ecommerce/src/main/groovy/org/apache/ofbiz/ecommerce/OrderNotificationTests.groovy @@ -16,7 +16,7 @@ * specific language governing permissions and limitations * under the License. */ -package org.apache.ofbiz.order +package org.apache.ofbiz.ecommerce import org.apache.ofbiz.service.ServiceUtil import org.apache.ofbiz.service.testtools.OFBizTestCase diff --git a/ecommerce/testdef/EcommerceTest.xml b/ecommerce/testdef/EcommerceTest.xml index 962b0e8..75b0b83 100644 --- a/ecommerce/testdef/EcommerceTest.xml +++ b/ecommerce/testdef/EcommerceTest.xml @@ -25,6 +25,6 @@ under the License. <entity-xml action="load" entity-xml-url="component://order/testdef/data/OrderTestData.xml"/> </test-case> <test-case case-name="ecommerce-notification-tests"> - <junit-test-suite class-name="org.apache.ofbiz.order.OrderNotificationTests"/> + <junit-test-suite class-name="org.apache.ofbiz.ecommerce.OrderNotificationTests"/> </test-case> </test-suite>