chore(database): make test naming consistent

This commit is contained in:
Harsh Shandilya 2023-08-23 23:28:01 +05:30
parent 41fe784641
commit f0d4395da6
No known key found for this signature in database

View file

@ -20,7 +20,7 @@ class ReadPostsQueriesTest {
} }
@Test @Test
fun markPostAsRead() { fun `mark post as read`() {
val id = UUID.randomUUID().toString() val id = UUID.randomUUID().toString()
postQueries.markRead(id) postQueries.markRead(id)
assertThat(postQueries.isRead(id).executeAsOne()).isNotNull() assertThat(postQueries.isRead(id).executeAsOne()).isNotNull()