Fix stale doPost references in servlet test method names

-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=148352385
This commit is contained in:
nickfelt 2017-02-23 09:28:15 -08:00 committed by Ben McIlwain
parent 1e7fc4d64d
commit d8ce444251
3 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ public class ToolsServletTest {
private final HttpServletResponse rsp = mock(HttpServletResponse.class);
@Test
public void testDoPost_notFound() throws Exception {
public void testService_unknownPath_returnsNotFound() throws Exception {
when(req.getMethod()).thenReturn("GET");
when(req.getRequestURI()).thenReturn("/lol");
new ToolsServlet().service(req, rsp);