Refactor variable's name

This commit is contained in:
Grzegorz Piwowarek 2016-07-12 21:33:20 +03:00
parent 79e2c3ed49
commit 6517c26dd6

View File

@ -116,9 +116,9 @@ public class AssertJJava8Test {
@Test @Test
public void givenString_shouldMatch() throws Exception { public void givenString_shouldMatch() throws Exception {
final String givenString = ""; final String emptyString = "";
assertThat(givenString) assertThat(emptyString)
.matches(String::isEmpty); .matches(String::isEmpty);
} }