public async Task ModuleSetNewServerInfo()
        {
            var response = await Module.ProcessRequest(
                CreateRequest(JsonConvert.SerializeObject(Server1), $"/servers/{Server1.Id}/info", HttpMethodEnum.Put));

            response.Response.Should().Be(new HttpResponse(HttpStatusCode.OK));

            var result = await StatisticStorage.GetServer(Server1.GetIndex());

            result.Should().Be(Server1);
        }