Skip to content

Commit

Permalink
fixing failing tests after refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
mariofusco committed Mar 18, 2013
1 parent 626b05a commit 4cf91e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -213,7 +213,7 @@ private static class KieModuleValidator {
private static Schema loadSchema() {
SchemaFactory factory = SchemaFactory.newInstance("http://www.w3.org/2001/XMLSchema");
try {
URL url = KieModuleModel.class.getClassLoader().getResource("../../../kie-api/src/main/resources/org/kie/api/kmodule.xsd");
URL url = KieModuleModel.class.getClassLoader().getResource("org/kie/api/kmodule.xsd");
return factory.newSchema(url);
} catch (SAXException ex ) {
throw new RuntimeException( "Unable to load XSD", ex );
Expand Down
@@ -1,6 +1,6 @@
package org.drools.compiler

import org.kie.event.rule.WorkingMemoryEventListener
import org.kie.api.event.rule.WorkingMemoryEventListener

rule "remove listener"
when
Expand Down

0 comments on commit 4cf91e2

Please sign in to comment.