From 60fc27646ae00a7143af5ce35f2b1057b0748fa7 Mon Sep 17 00:00:00 2001 From: Chris Tingue Date: Mon, 1 Aug 2016 09:01:03 -0700 Subject: [PATCH] Add domain application create history to LrpToken Also change LrpToken to utilize Builder, and make changes to the registry_tool command to return detailed history on the application, if desired. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=128990117 --- javatests/google/registry/tools/CommandTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javatests/google/registry/tools/CommandTestCase.java b/javatests/google/registry/tools/CommandTestCase.java index 8036682a0..6a682acdd 100644 --- a/javatests/google/registry/tools/CommandTestCase.java +++ b/javatests/google/registry/tools/CommandTestCase.java @@ -174,7 +174,7 @@ public abstract class CommandTestCase { } } - void assertNotInStdout(String expected) throws Exception { + protected void assertNotInStdout(String expected) throws Exception { assertThat(getStdoutAsString()).doesNotContain(expected); }