fix(test): correct entry variants fetch_nonexistent to use fetch(uid) pattern - #187
Merged
aniket-shikhare-cstk merged 1 commit intoAug 31, 2026
Merged
Conversation
… pattern
variants(x) treats its single positional arg as a branch UID, not a
variant UID, so variants("no_such_variant").fetch() left variant_uid=None
and hit the client-side ArgumentException guard before the HTTP call.
Fix: pass the UID to fetch() directly, which is the correct SDK pattern.
Generated by Claude Code
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
🔒 Security Scan Results
⏱️ SLA Breach Summary
ℹ️ Vulnerabilities Without Available Fixes (Informational Only)The following vulnerabilities were detected but do not have fixes available (no upgrade or patch). These are excluded from failure thresholds:
✅ BUILD PASSED - All security checks passed |
maheshmotkar-cs
approved these changes
Aug 31, 2026
OMpawar-21
approved these changes
Aug 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
test_fetch_nonexistent) intest_17_entry_variants.pythat caused 269/270 on the last GoCD runentry.variants(x)treats its single positional arg as a branch UID, not a variant UID — so.variants("no_such_variant").fetch()leftvariant_uid=Noneand hit the SDK'sArgumentExceptionclient-side guard before any HTTP call was made.variants().fetch("no_such_variant")passes the UID tofetch()directly, which is the correct SDK pattern and reaches the server to get a 404/412/422 responseTest plan
sdk-python-cma-daily-sanitypipeline passes on this branch🤖 Generated with Claude Code