Skip to content

Commit

Permalink
Changed name of anonyomous class loader test to avoid discovery by Su…
Browse files Browse the repository at this point in the history
…refire.
  • Loading branch information
Rafael Winterhalter committed Dec 11, 2015
1 parent 6e2246f commit 93f2130
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Expand Up @@ -164,7 +164,7 @@ public void testEngineSelfReport() throws Exception {
@JavaVersionRule.Enforce(8)
@AgentAttachmentRule.Enforce(retransformsClasses = true, redefinesClasses = true)
public void testAnonymousType() throws Exception {
((Runnable) Class.forName("net.bytebuddy.test.precompiled.AnonymousClassLoaderTest").newInstance()).run();
((Runnable) Class.forName("net.bytebuddy.test.precompiled.AnonymousClassLoader").newInstance()).run();
}

@Test
Expand Down
Binary file not shown.
Expand Up @@ -13,7 +13,7 @@
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.MatcherAssert.assertThat;

public class AnonymousClassLoaderTest implements Runnable {
public class AnonymousClassLoader implements Runnable {

private static final String FOO = "foo", BAR = "bar";

Expand Down

0 comments on commit 93f2130

Please sign in to comment.