From 16f1d048165d2bf0aee4833ff7d8b415f537ce64 Mon Sep 17 00:00:00 2001 From: Michael Arenzon Date: Mon, 28 Sep 2015 22:08:16 +0300 Subject: [PATCH] api has changed, fixing the example --- mockwebserver/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mockwebserver/README.md b/mockwebserver/README.md index 3fd6ca6e9..ba40bf572 100644 --- a/mockwebserver/README.md +++ b/mockwebserver/README.md @@ -42,7 +42,7 @@ public void test() throws Exception { server.start(); // Ask the server for its URL. You'll need this to make HTTP requests. - URL baseUrl = server.url("/v1/chat/"); + HttpUrl baseUrl = server.url("/v1/chat/"); // Exercise your application code, which should make those HTTP requests. // Responses are returned in the same order that they are enqueued.