I did extract variable on ```java @Test public void convertFromStringToInetAddressWhenHostDoesNotExistShouldThrowException() { this.thrown.expect(ConversionFailedException.class); this.conversionService.convert("ireallydontexist.example.com", InetAddress.class); } ``` and got ```java @Test public void convertFromStringToInetAddressWhenHostDoesNotExistShouldThrowException() { this.thrown.expect(ConversionFailedException.class); String missingDomain = "ireallydontexist.example.com"; this.conversionService.convert(missingDomain, InetAddress.class); } ```