2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-29 13:27:43 +00:00

updated more queries

This commit is contained in:
nspadaccino 2024-10-03 14:32:21 -04:00
parent 61fe42ccfd
commit a5a5f58d42
No known key found for this signature in database
GPG Key ID: AB060C9A2C68918E
2 changed files with 3 additions and 3 deletions

View File

@ -34,6 +34,6 @@ trait MySqlApiIntegrationSpec extends MySqlIntegrationSpec {
def clearGroupRepo(): Unit = def clearGroupRepo(): Unit =
DB.localTx { s => DB.localTx { s =>
s.executeUpdate("DELETE FROM groups") s.executeUpdate("DELETE FROM `groups`")
} }
} }

View File

@ -50,7 +50,7 @@ class MySqlGroupRepositoryIntegrationSpec
override protected def beforeAll(): Unit = { override protected def beforeAll(): Unit = {
DB.localTx { s => DB.localTx { s =>
s.executeUpdate("DELETE FROM groups") s.executeUpdate("DELETE FROM `groups`")
} }
for (group <- groups) { for (group <- groups) {
@ -60,7 +60,7 @@ class MySqlGroupRepositoryIntegrationSpec
override protected def afterAll(): Unit = { override protected def afterAll(): Unit = {
DB.localTx { s => DB.localTx { s =>
s.executeUpdate("DELETE FROM groups") s.executeUpdate("DELETE FROM `groups`")
} }
super.afterAll() super.afterAll()
} }