Commit 5d373661 authored by Noel Alonso's avatar Noel Alonso
Browse files

Elimina test no necesario

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

	@Test
	public void getRussianLanguageMessage_returnCode_WhenI18nFileNotExist() {

		try {
			aggregate.process(new UpdateThemeInspireCommand());
		} catch (HistoryNotFoundException 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() {