Commit f88917af authored by Noel Alonso's avatar Noel Alonso
Browse files

Elimina test no necesario

parent dfdb2f58
Loading
Loading
Loading
Loading
+0 −17
Original line number Diff line number Diff line
@@ -103,23 +103,6 @@ public class ExceptionsTranslationTest {
		}
	}

	@Test
	public void getRussianLanguageMessage_returnCode_WhenI18nFileNotExist() {

		try {
			repository.findById("1");
		} catch (ItemNotFoundException e) {

			String code = e.getCode().toString();

			String[] fields = (String[]) e.getFieldErrors().toArray();

			String mess = messageSource.getMessage(code, fields, new Locale("ru", "RU"));

			Assert.assertEquals(code, mess);
		}
	}

	@Test
	public void getMessage_returnCode_WhenCodeNotInI18nFile() {