2
0
mirror of https://github.com/VinylDNS/vinyldns synced 2025-08-22 02:02:14 +00:00

updated more queries

This commit is contained in:
nspadaccino 2024-10-03 14:32:21 -04:00
parent b31923e91f
commit 94caf84233
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 =
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 = {
DB.localTx { s =>
s.executeUpdate("DELETE FROM groups")
s.executeUpdate("DELETE FROM `groups`")
}
for (group <- groups) {
@ -60,7 +60,7 @@ class MySqlGroupRepositoryIntegrationSpec
override protected def afterAll(): Unit = {
DB.localTx { s =>
s.executeUpdate("DELETE FROM groups")
s.executeUpdate("DELETE FROM `groups`")
}
super.afterAll()
}