Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e076e7c

Browse files
authored
Fix getting started test (open-telemetry#3371)
1 parent 3f459d3 commit e076e7c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
# Otherwise, set variable to the commit of your branch on
1111
# opentelemetry-python-contrib which is compatible with these Core repo
1212
# changes.
13-
CONTRIB_REPO_SHA: a5ed4da478c4360fd6e24893f7574b150431b7ee
13+
CONTRIB_REPO_SHA: dadcd01524449ddee07a8d8405890a60caeb8c8e
1414
# This is needed because we do not clone the core repo in contrib builds anymore.
1515
# When running contrib builds as part of core builds, we use actions/checkout@v2 which
1616
# does not set an environment variable (simply just runs tox), which is different when

docs/getting_started/tests/test_flask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ def test_flask(self):
4444
server.terminate()
4545

4646
output = str(server.stdout.read())
47-
self.assertIn('"name": "HTTP GET"', output)
47+
self.assertIn('"name": "GET"', output)
4848
self.assertIn('"name": "example-request"', output)
4949
self.assertIn('"name": "/"', output)

0 commit comments

Comments
 (0)