mirror of
https://github.com/google/nomulus
synced 2026-09-08 09:07:11 +00:00
Rename "absent" to "empty" in test names
This is left over from the transition from Guava to Java 8 Optionals. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=207154260
This commit is contained in:
@@ -37,12 +37,12 @@ public class PhoneNumberParameterTest {
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testConvert_empty_returnsAbsent() {
|
||||
public void testConvert_empty_returnsEmpty() {
|
||||
assertThat(instance.convert("")).isEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testConvert_nullString_returnsAbsent() {
|
||||
public void testConvert_nullString_returnsEmpty() {
|
||||
assertThat(instance.convert("null")).isEmpty();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user