mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-29 13:27:43 +00:00
updated more queries
This commit is contained in:
parent
61fe42ccfd
commit
a5a5f58d42
@ -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`")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user