mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
updated more queries
This commit is contained in:
parent
b31923e91f
commit
94caf84233
@ -34,6 +34,6 @@ trait MySqlApiIntegrationSpec extends MySqlIntegrationSpec {
|
||||
|
||||
def clearGroupRepo(): Unit =
|
||||
DB.localTx { s =>
|
||||
s.executeUpdate("DELETE FROM groups")
|
||||
s.executeUpdate("DELETE FROM `groups`")
|
||||
}
|
||||
}
|
||||
|
@ -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()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user