You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a comma missing between "releases" and "discover" resulting in the two being implicitly concatenated together to form "releasesdiscover".
The impact is the test requesting "/releasesdiscover" which does not exist, and so instead of "/releases" and "/discover" being tested, instead the 404 page is tested.
Expected Result
Add the missing comma i.e., ["issues", "releases", "discover", "user-feedback"]
Actual Result
NA
I will create a PR to fix this for you :)
The text was updated successfully, but these errors were encountered:
The organisational switch test does not work as intended because there is implicit string concatenation on line 54
sentry/tests/acceptance/test_organization_switch.py
Lines 52 to 55 in 1e4daba
There is a comma missing between
"releases"and"discover"resulting in the two being implicitly concatenated together to form"releasesdiscover".The impact is the test requesting
"/releasesdiscover"which does not exist, and so instead of "/releases" and "/discover" being tested, instead the 404 page is tested.Expected Result
Add the missing comma i.e.,
["issues", "releases", "discover", "user-feedback"]Actual Result
NA
I will create a PR to fix this for you :)
The text was updated successfully, but these errors were encountered: