From 8275917a96108a79fd424a04250401d4867cbc26 Mon Sep 17 00:00:00 2001 From: Filip Hrisafov Date: Fri, 6 Sep 2024 11:25:07 +0300 Subject: [PATCH] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c55516..69f22ee 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ It allows to specify which the responses that the server should return for each The reason for creating this library is that we wanted to have a similar functionality for testing HTTP clients in Java, but without the need to include the whole OkHttp library. We are using a light weight webserver [Microhttp](https://github.com/ebarlas/microhttp) to handle the requests. -The use of Microhttp limits the functionality of the server (i.e. there is no HTTPS / TLS support and not HTTP 2 support), but it is enough for our needs. +The use of Microhttp limits the functionality of the server (i.e. there is no HTTPS / TLS support and no HTTP 2 support), but it is enough for our needs. There is also a different library [WireMock](http://wiremock.org/) that provides similar functionality, but that one is even more complex (with more dependencies) and has more features than we needed.