Skip to content

Commit

Permalink
Fix getting started test (#3371)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Jul 6, 2023
1 parent 3f459d3 commit e076e7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/tests/test_flask.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit e076e7c

Please sign in to comment.