Update themes

This commit is contained in:
2020-06-08 18:57:04 +02:00
parent e8db519f28
commit ff829e5922
10 changed files with 90 additions and 47 deletions
+2 -2
View File
@@ -31,7 +31,7 @@ class FakeDataTest {
val note = FullNoteCreateDTO(title, tags, chapters)
notesService.createNote(15, note)
notesService.createNote(1, note)
}
}
}
+3 -3
View File
@@ -16,9 +16,9 @@ import org.kodein.di.generic.singleton
val hikariConfig = HikariConfig().apply {
jdbcUrl = "jdbc:mariadb://localhost:3306/Notes"
username = "test"
password = "test"
jdbcUrl = "jdbc:mariadb://localhost:3306/notes"
username = "notes"
password = "notes"
}
val dataSource = HikariDataSource(hikariConfig)