Skip to content

Commit

Permalink
WBRI-390
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@3776 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Sep 23, 2009
1 parent c73bae1 commit ac51305
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Expand Up @@ -53,6 +53,6 @@ public int echo1(int i)
public int echo3(int i)
{
echo3 = true;
return delegate.echo1(i);
return delegate.echo3(i);
}
}
Expand Up @@ -47,12 +47,12 @@ public static void reset()
public int echo2(int i)
{
echo2 = true;
return delegate.echo1(i);
return delegate.echo2(i);
}

public int echo3(int i)
{
echo3 = true;
return delegate.echo1(i);
return delegate.echo3(i);
}
}
1 change: 1 addition & 0 deletions tests/unit-tests.xml
Expand Up @@ -56,6 +56,7 @@
<package name="org.jboss.webbeans.test.unit.manager" />
<package name="org.jboss.webbeans.test.unit.noncontextual" />
<package name="org.jboss.webbeans.test.unit.security" />
<package name="org.jboss.webbeans.test.unit.decorator.simple" />
</packages>
</test>

Expand Down

0 comments on commit ac51305

Please sign in to comment.