Fix typos

This commit is contained in:
2021-02-27 18:07:22 +01:00
parent 525e3a4a3f
commit 761382da23
47 changed files with 77 additions and 77 deletions
@@ -0,0 +1,14 @@
package be.simplenotes.persistence.users
import be.simplenotes.persistence.repositories.UserRepository
import be.simplenotes.types.PersistedUser
import be.simplenotes.types.User
import com.github.javafaker.Faker
private val faker = Faker()
fun fakeUser() = User(faker.name().username(), faker.internet().password())
fun UserRepository.createFakeUser(): PersistedUser? {
return create(fakeUser())
}