Renamed a webapp test

This commit is contained in:
anthonyraymond 2018-04-07 23:01:43 +02:00
parent d10c6c9c78
commit 812b25caa8
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@ public class JacksonConfig {
public static final class InfoHashSerializer extends JsonSerializer<InfoHash> {
@Override
public void serialize(final InfoHash value, final JsonGenerator gen, final SerializerProvider serializers) throws IOException, JsonProcessingException {
public void serialize(final InfoHash value, final JsonGenerator gen, final SerializerProvider serializers) throws IOException {
gen.writeString(value.value());
}

View file

@ -53,8 +53,8 @@ import static org.assertj.core.api.Assertions.assertThat;
"joal.ui.secret-token=" + TestConstant.UI_SECRET_TOKEN
}
)
@Import({WebSecurityConfigTest.TestWebUiController.class})
public class WebSecurityConfigTest /*extends TestConstant*/ {
@Import({WebSecurityConfigWebAppTest.TestWebUiController.class})
public class WebSecurityConfigWebAppTest {
@LocalServerPort
private int port;