Fix API test package

#1162
This commit is contained in:
Gabriele C 2017-04-14 14:03:40 +02:00
parent ff7b9077e8
commit 5a93ed32f1
3 changed files with 4 additions and 4 deletions

View File

@ -118,7 +118,7 @@ public class AuthMe extends JavaPlugin {
/** /**
* Method used to obtain the v2 plugin's api instance * Method used to obtain the v2 plugin's api instance
* @deprecated Will be removed in 5.3! * @deprecated Will be removed in 5.4!
* *
* @return The plugin's api instance * @return The plugin's api instance
*/ */

View File

@ -21,7 +21,7 @@ import java.util.List;
/** /**
* The v2 API of AuthMe. * The v2 API of AuthMe.
* @deprecated Will be removed in 5.3! * @deprecated Will be removed in 5.4!
* *
* Recommended method of retrieving the API object: * Recommended method of retrieving the API object:
* <code> * <code>

View File

@ -1,4 +1,4 @@
package fr.xephi.authme.api; package fr.xephi.authme.api.v3;
import fr.xephi.authme.AuthMe; import fr.xephi.authme.AuthMe;
import fr.xephi.authme.ReflectionTestUtils; import fr.xephi.authme.ReflectionTestUtils;
@ -39,7 +39,7 @@ import static org.mockito.Mockito.verify;
* Test for {@link fr.xephi.authme.api.v3.AuthMeAPI}. * Test for {@link fr.xephi.authme.api.v3.AuthMeAPI}.
*/ */
@RunWith(MockitoJUnitRunner.class) @RunWith(MockitoJUnitRunner.class)
public class AuthMeAPIv3Test { public class AuthMeAPITest {
@InjectMocks @InjectMocks
private AuthMeAPI api; private AuthMeAPI api;