diff --git a/README.md b/README.md index 6b6164283..5556b0d01 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ brew install python Apache License version 2.0 [See LICENSE for details](https://github.com/SpectoLabs/hoverfly/blob/master/LICENSE). -(c) [iOCO Solutions](https://ioco.uk/) 2025. +Copyright (c) 2025 [Hoverfly Cloud](https://hoverfly.io) [CircleCI-Image]: https://circleci.com/gh/SpectoLabs/hoverfly.svg?style=shield [CircleCI-Url]: https://circleci.com/gh/SpectoLabs/hoverfly diff --git a/docs/conf.py b/docs/conf.py index de14b4689..019128ae9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,8 +9,8 @@ # https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information project = 'Hoverfly' -copyright = '2025, iOCO Solutions' -author = 'iOCO Solutions' +copyright = '2025 Hoverfly Cloud' +author = 'Hoverfly Cloud' version = 'v1.10.9' # The full version, including alpha/beta/rc tags. @@ -61,7 +61,7 @@ latex_documents = [ (master_doc, 'hoverfly.tex', u'Hoverfly Documentation', - u'iOCO Solutions', 'manual'), + u'Hoverfly Cloud', 'manual'), ] man_pages = [ diff --git a/docs/pages/community.rst b/docs/pages/community.rst index 69c57779a..1912a4643 100644 --- a/docs/pages/community.rst +++ b/docs/pages/community.rst @@ -6,4 +6,4 @@ Community - Chat on the `Hoverfly Gitter channel `_ - Join the `Hoverfly mailing list `_ - Raise a `GitHub Issue `_ -- Get in touch with `iOCO Solutions `_ +- Get in touch with `Hoverfly Cloud `_ diff --git a/functional-tests/hoverctl/middleware_test.go b/functional-tests/hoverctl/middleware_test.go index aacc5dd33..5a66880c4 100644 --- a/functional-tests/hoverctl/middleware_test.go +++ b/functional-tests/hoverctl/middleware_test.go @@ -129,11 +129,11 @@ var _ = Describe("When I use hoverctl", func() { }) It("I cannae set the hoverfly's middleware when specifying non-existing remote middleware", func() { - output := functional_tests.Run(hoverctlBinary, "middleware", "--remote", "http://specto.io/404/nothere") + output := functional_tests.Run(hoverctlBinary, "middleware", "--remote", "http://specto-fda13.web.app/404/nothere") Expect(output).To(ContainSubstring("Could not set middleware, it may have failed the test")) Expect(output).To(ContainSubstring("Error when communicating with remote middleware: received 404")) - Expect(output).To(ContainSubstring("URL: http://specto.io/404/nothere")) + Expect(output).To(ContainSubstring("URL: http://specto-fda13.web.app/404/nothere")) Expect(output).To(ContainSubstring("STDIN:")) Expect(output).To(ContainSubstring(`{"response":{"status":200,"body":"ok","encodedBody":false,"headers":{"test_header":["true"]}},"request":{"path":"/","method":"GET","destination":"www.test.com","scheme":"","query":"","formData":null,"body":"","headers":{"test_header":["true"]}}}`)) })