Skip to content

Commit

Permalink
test: move VarArgsSample.java to testclasses in varargs (#2188)
Browse files Browse the repository at this point in the history
  • Loading branch information
zielint0 authored and monperrus committed Jul 10, 2018
1 parent cf3adb6 commit c7224c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/spoon/test/varargs/VarArgsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class VarArgsTest {

@Test
public void testModelBuildingInitializer() throws Exception {
CtClass<Main> type = build("spoon.test.varargs", "VarArgsSample");
CtClass<Main> type = build("spoon.test.varargs.testclasses", "VarArgsSample");
assertEquals("VarArgsSample", type.getSimpleName());
CtMethod<?> m = type.getMethodsByName("foo").get(0);

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package spoon.test.varargs;
package spoon.test.varargs.testclasses;

public class VarArgsSample {

Expand Down

0 comments on commit c7224c9

Please sign in to comment.