mirror of
https://github.com/google/nomulus.git
synced 2025-06-28 23:33:36 +02:00
Switch all added usages of java.time to be joda.time
This is for consistency, mostly the LocalDate fields added in [] ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=224525451
This commit is contained in:
parent
68320ebad8
commit
305b1edc85
10 changed files with 30 additions and 40 deletions
|
@ -35,7 +35,7 @@ import google.registry.testing.AppEngineRule;
|
|||
import google.registry.testing.FakeResponse;
|
||||
import google.registry.testing.TaskQueueHelper.TaskMatcher;
|
||||
import java.io.IOException;
|
||||
import java.time.LocalDate;
|
||||
import org.joda.time.LocalDate;
|
||||
import org.junit.Before;
|
||||
import org.junit.Rule;
|
||||
import org.junit.Test;
|
||||
|
@ -87,7 +87,7 @@ public class GenerateSpec11ReportActionTest {
|
|||
"gs://template",
|
||||
"us-east1-c",
|
||||
"api_key/a",
|
||||
LocalDate.parse("2018-06-11"),
|
||||
new LocalDate(2018, 6, 11),
|
||||
response,
|
||||
dataflow);
|
||||
action.run();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue