-
Notifications
You must be signed in to change notification settings - Fork 17
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
Add @After
to guarantee DB was closed ?
#511
Comments
Ah, thanks for picking that up. Yes please, |
sanao1006
added a commit
to sanao1006/pachli-android
that referenced
this issue
Mar 8, 2024
To guarantee that DB was closed. Fixes pachli#511
nikclayton
pushed a commit
that referenced
this issue
Mar 8, 2024
The previous code forgot to close the DB after TimelineDaoTest was run, so a warning message was displayed when the test was run locally. Close the database using the `@After` annotation. Fixes #511
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is your feature request related to a problem? Please describe.
When I run TimelineDaoTest on my local, I get the following warning message (the test passes)
Maybe these messages are a bit annoying and should be resolved
Describe the solution you'd like
Maybe the db should be closed using the
@After
annotation ( I'm not sure).However, it is possible that for some reason you are not intentionally close the db, so I want to get confirmation.
If this modification is needed, I will create a PR
The text was updated successfully, but these errors were encountered: