This commit is contained in:
Sebastian Sdorra
2016-12-07 22:28:06 +01:00
parent 2a6f51fa6d
commit 3709ce7602
11 changed files with 18 additions and 18 deletions

View File

@@ -110,7 +110,7 @@ public abstract class RepositoryManagerTestBase
* @throws IOException
* @throws RepositoryException
*/
@Test(expected = RepositoryAllreadyExistExeption.class)
@Test(expected = RepositoryAlreadyExistsException.class)
public void testCreateExisting() throws RepositoryException, IOException
{
createTestRepository();

View File

@@ -96,7 +96,7 @@ public abstract class SimpleRepositoryHandlerTestBase extends AbstractTestBase
* @throws IOException
* @throws RepositoryException
*/
@Test(expected = RepositoryAllreadyExistExeption.class)
@Test(expected = RepositoryAlreadyExistsException.class)
public void testCreateExisitingRepository()
throws RepositoryException, IOException
{

View File

@@ -94,7 +94,7 @@ public abstract class UserManagerTestBase
* @throws IOException
* @throws UserException
*/
@Test(expected = UserAllreadyExistException.class)
@Test(expected = UserAlreadyExistsException.class)
public void testCreateExisting() throws UserException, IOException
{
User zaphod = UserTestData.createZaphod();