Don't include "Command" suffix in WHOIS metrics command name label

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=152414152
This commit is contained in:
mcilwain 2017-04-06 12:39:06 -07:00 committed by Ben McIlwain
parent 5081d780dc
commit 08009e755f
3 changed files with 6 additions and 4 deletions

View file

@ -456,7 +456,7 @@ public class WhoisServerTest {
server.run();
WhoisMetric expected =
WhoisMetric.builderForRequest(clock)
.setCommandName("NameserverLookupByIpCommand")
.setCommandName("NameserverLookupByIp")
.setNumResults(2)
.setStatus(SC_OK)
.build();
@ -470,7 +470,7 @@ public class WhoisServerTest {
server.run();
WhoisMetric expected =
WhoisMetric.builderForRequest(clock)
.setCommandName("DomainLookupCommand")
.setCommandName("DomainLookup")
.setNumResults(0)
.setStatus(SC_NOT_FOUND)
.build();