From b3137670265da9c2731bdefa752851137e63e8e3 Mon Sep 17 00:00:00 2001 From: Erik Winter Date: Mon, 29 Mar 2021 08:30:20 +0200 Subject: [PATCH] text edit --- test/doc/httpmock_tutorial.adoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/doc/httpmock_tutorial.adoc b/test/doc/httpmock_tutorial.adoc index 3f7ef62..2e65776 100644 --- a/test/doc/httpmock_tutorial.adoc +++ b/test/doc/httpmock_tutorial.adoc @@ -140,11 +140,11 @@ mockServer := NewMockServer(nil, MockServerProcedure{ URI: "/path", HTTPMethod: http.MethodGet, Response: MockResponse{ - StatusCode: http.StatusOK, - Body: []byte(`First page`), + StatusCode: http.StatusOK, + Body: []byte(`First page`), + }, }, -}, -// define more if needed + // define more if needed ) ----