We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dbcbeae + 3eadbd1 commit b1a72afCopy full SHA for b1a72af
dash/testing/browser.py
@@ -160,10 +160,7 @@ def percy_snapshot(
160
if widths is None:
161
widths = [1280]
162
163
- # py3.9 hardcoded here to keep snapshot names the same accorss
164
- # future python upgrades
165
- snapshot_name = f"{name} - py3.9"
166
- logger.info("taking snapshot name => %s", snapshot_name)
+ logger.info("taking snapshot name => %s", name)
167
try:
168
if wait_for_callbacks:
169
# the extra one second sleep adds safe margin in the context
@@ -199,7 +196,7 @@ def percy_snapshot(
199
196
)
200
197
201
198
202
- self.percy_runner.snapshot(name=snapshot_name, widths=widths)
+ self.percy_runner.snapshot(name=name, widths=widths)
203
except requests.HTTPError as err:
204
# Ignore retries.
205
if err.request.status_code != 400:
0 commit comments