-
Notifications
You must be signed in to change notification settings - Fork 656
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
Fix #2818 #4358
Fix #2818 #4358
Conversation
👷 Deploy request for apollo-android-docs pending review.Visit the deploys page to approve 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.
Looks good to me! Thanks a lot 🙏
.build() | ||
.await() | ||
|
||
assertThat(cacheResponse.data?.home?.sectionA?.name).isEqualTo("modifiedSectionName") |
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.
Can you also add a check that the fragment is correctly written?
assertThat(cacheResponse.data?.home?.sectionA?.name).isEqualTo("modifiedSectionName") | |
assertThat(cacheResponse.data?.home?.sectionA?.name).isEqualTo("modifiedSectionName") | |
assertThat(cacheResponse.data?.home?.fragments?.sectionFragment?.sectionA?.imageUrl).isEqualTo("modifiedUrl") |
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.
Done in 0c04a41. Thanks!
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.
A small comment but looks good to me, thanks!
Thanks for the contribution! |
Following the suggestion from here:
Also added an integration test based on the reproducer, as suggested by @BoD (thank you!).