From eeeeb6a81a36ba9b5f2048770dcc85db02b88152 Mon Sep 17 00:00:00 2001 From: Zander Mackie Date: Thu, 24 Oct 2019 08:59:44 -0400 Subject: [PATCH] Correct example.com text to be less change sensitive --- .../integration/deploy_pushstate_and_proxy_pass_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/staticfile/integration/deploy_pushstate_and_proxy_pass_test.go b/src/staticfile/integration/deploy_pushstate_and_proxy_pass_test.go index cd0815546..43e958751 100644 --- a/src/staticfile/integration/deploy_pushstate_and_proxy_pass_test.go +++ b/src/staticfile/integration/deploy_pushstate_and_proxy_pass_test.go @@ -29,7 +29,7 @@ var _ = Describe("deploy a pushstate and reverse proxy app", func() { }) By("proxies", func() { - Expect(app.GetBody("/api")).To(ContainSubstring("This domain is established to be used for illustrative examples in documents")) + Expect(app.GetBody("/api")).To(ContainSubstring("illustrative examples in documents")) }) }) })