-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(PXP:8581): Add apiEndpoint and other arguments to configure
to avoid breaking changes
#98
base: master
Are you sure you want to change the base?
Conversation
The style in this PR agrees with This formatting comment was generated automatically by a script in uc-cdis/wool. |
|
||
if profile_title in lines: | ||
profile_line_index = lines.index(profile_title) | ||
next_profile_index = len(lines) | ||
for i in range(profile_line_index, len(lines)): | ||
for i in range(profile_line_index + 1, len(lines)): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how come the unit tests didn't catch these 2 issues? 🤔 is there a test case we should add?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's a good point. Let me see where did I miss it. Will get back to you on this! 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ahh! It wasn't really about a missing test case but more about how the test was written. I skipped a step while arranging the test scenario. Will push the update now.
Jira Ticket: PXP-8581
Bug Fixes
gen3/config
was buggy. This PR Fixes it.Improvements