-
Notifications
You must be signed in to change notification settings - Fork 527
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
Update literals to named arguments in TopicLessonsFragmentTest.kt #2515
Comments
I'll like to work on it. Can you assign me this issue?? |
@Sci3fic Have you completed the onboarding procedures from here? https://github.com/oppia/oppia-android/wiki |
Done with the procedures and setup. Just for clarification: I need to check each and every Kotlin file for the issue. Right?? |
Yes. Currently, we have few pre-push git hooks, which warns you if there are any linting errors before you push it to your branch. If you see any errors/warnings, the push will fail, and you will be asked to fix the errors. |
I suggest creating multiple sub issues for this. Tracking in one issue might be complex. |
Agreed. On what basis should we split these into sub issues or should we create independent good-first-issues for the identified files ? |
we can create package wise. Are we including test files too? and what all modules we are covering in this? |
I thought this would be a good first issue, for all of the Tests (Ex: |
yes, let's create issues package vice. |
Renamed this issue specifically for |
…tTest.kt. (#2524) * Updated literals to named argumentsin TopicLessonsFragmentTest.kt. * Update TopicLessonsFragmentTest.kt * Update TopicLessonsFragmentTest.kt
Is your feature request related to a problem? Please describe.
Update the literals passed as argument to named arguments. This improves code readability and provides better context to the readers. One such instance is shown as an example below.
Describe the solution you'd like
Update the argument in line 246 below:
oppia-android/app/src/sharedTest/java/org/oppia/android/app/topic/lessons/TopicLessonsFragmentTest.kt
Lines 244 to 248 in bb7351b
to the following code:
Additional context
TopicLessonsFragmentTest
, update the code with named arguments.The text was updated successfully, but these errors were encountered: