diff options
author | 2018-10-22 16:59:12 -0400 | |
---|---|---|
committer | 2018-10-22 16:59:12 -0400 | |
commit | 96529b2c501b47a71a0f6eae5a04ebe86ba1ab1d (patch) | |
tree | 053f7e923df69c43c531dd3c3977eb743a560daf /test | |
parent | 85e5ab77d65d224e2c2e5a31e28f17595fea6848 (diff) | |
download | coredns-96529b2c501b47a71a0f6eae5a04ebe86ba1ab1d.tar.gz coredns-96529b2c501b47a71a0f6eae5a04ebe86ba1ab1d.tar.zst coredns-96529b2c501b47a71a0f6eae5a04ebe86ba1ab1d.zip |
make default min ttl 5 (#2227)
Diffstat (limited to 'test')
-rw-r--r-- | test/cache_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cache_test.go b/test/cache_test.go index 191035b5f..30f119839 100644 --- a/test/cache_test.go +++ b/test/cache_test.go @@ -48,7 +48,7 @@ func TestLookupCache(t *testing.T) { }) t.Run("Short TTL", func(t *testing.T) { - testCase(t, state, p, "short.example.org.", 1, 1) + testCase(t, state, p, "short.example.org.", 1, 5) }) } |