mirror of
https://github.com/google/nomulus.git
synced 2025-05-15 00:47:11 +02:00
Use an empty interval instead of null to signal no LRP
This removes the need for some null checks ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=136146549
This commit is contained in:
parent
148270a813
commit
064026a4a5
3 changed files with 5 additions and 4 deletions
|
@ -39,6 +39,7 @@ import java.io.ByteArrayOutputStream;
|
|||
import java.io.PrintStream;
|
||||
import org.joda.money.Money;
|
||||
import org.joda.time.DateTime;
|
||||
import org.joda.time.Duration;
|
||||
import org.joda.time.Interval;
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
|
@ -414,7 +415,8 @@ public class UpdateTldCommandTest extends CommandTestCase<UpdateTldCommand> {
|
|||
DateTime.parse("2004-06-09T12:30:00Z"), DateTime.parse("2004-07-10T13:30:00Z")))
|
||||
.build());
|
||||
runCommandForced("--lrp_period=null", "xn--q9jyb4c");
|
||||
assertThat(Registry.get("xn--q9jyb4c").getLrpPeriod()).isNull();
|
||||
assertThat(Registry.get("xn--q9jyb4c").getLrpPeriod())
|
||||
.isEqualTo(new Interval(START_OF_TIME, Duration.ZERO));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue