diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index db3a931e6e6..f1355d9e41c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ env: # Otherwise, set variable to the commit of your branch on # opentelemetry-python-contrib which is compatible with these Core repo # changes. - CONTRIB_REPO_SHA: a5ed4da478c4360fd6e24893f7574b150431b7ee + CONTRIB_REPO_SHA: dadcd01524449ddee07a8d8405890a60caeb8c8e # This is needed because we do not clone the core repo in contrib builds anymore. # When running contrib builds as part of core builds, we use actions/checkout@v2 which # does not set an environment variable (simply just runs tox), which is different when diff --git a/docs/getting_started/tests/test_flask.py b/docs/getting_started/tests/test_flask.py index 92425dc5cf4..b7a5b46d5a7 100644 --- a/docs/getting_started/tests/test_flask.py +++ b/docs/getting_started/tests/test_flask.py @@ -44,6 +44,6 @@ def test_flask(self): server.terminate() output = str(server.stdout.read()) - self.assertIn('"name": "HTTP GET"', output) + self.assertIn('"name": "GET"', output) self.assertIn('"name": "example-request"', output) self.assertIn('"name": "/"', output)