1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

fix format

This commit is contained in:
Craig Peterson
2019-06-27 01:21:23 -04:00
parent 394b9ccf41
commit 364aac5073
5 changed files with 11 additions and 15 deletions

View File

@@ -616,8 +616,8 @@ func makeTests(t *testing.T) []*TestCase {
)
}
// test r53 for very very large batch sizes
if *providerToRun == "ROUTE53"{
// test r53 for very very large batch sizes
if *providerToRun == "ROUTE53" {
tests = append(tests,
tc("600 records", manyA("rec%04d", "1.2.3.4", 600)...),
tc("Update 600 records", manyA("rec%04d", "1.2.3.5", 600)...),
@@ -626,9 +626,9 @@ func makeTests(t *testing.T) []*TestCase {
tc("Update 1200 records", manyA("rec%04d", "1.2.3.5", 1200)...),
tc("Empty"),
)
}
}
// Empty last
tests = append(tests,tc("Empty"))
tests = append(tests, tc("Empty"))
return tests
}