-
Notifications
You must be signed in to change notification settings - Fork 20
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
TDL-19801: Tap fetch data for sub-questions #62
Merged
prijendev
merged 17 commits into
crest-master
from
TDL-19801-Tap-Does-Not-Support-Fetching-Data-For-The-Questions-Nested-Within-A-Question-Group
Aug 29, 2022
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
6bce5af
TDL-19801: Tap does not support fetching data for the questions neste…
a4af60c
addressed the comments
8f835a1
add unittest
46202a5
modify funciton comment
6fb58f7
formated test_case value in unittest
08e7b86
formated expected_case
ec5bd1e
Updated schema in questions.json
74aa166
resolved build fail error
fea7596
resolve build fail error
15141fe
updated unittest
627aaaa
updated setup.py
7e7dc9a
add parameterized
72551c6
change start date in start_date_test
1230dcc
make change in bookmark test
db99dc0
Merge branch 'crest-master' into TDL-19801-Tap-Does-Not-Support-Fetch…
prijendev 4b9515c
Updated unit test case.
prijendev 630dfa3
Updated schemas and keyerror.
prijendev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
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.
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.
We can remove the if condition because for loop will not iterate on
None or []
so no need to handle it.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.
Removed the "if" condition and used the "get" method as per suggestion.