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

LINODE: Add Default TTL as allowed TTL (#2442)

This commit is contained in:
Koen Vlaswinkel
2023-06-17 13:51:13 +02:00
committed by GitHub
parent d00804b4f5
commit 0bf24d0282
4 changed files with 12 additions and 4 deletions

View File

@@ -6,6 +6,8 @@ func TestFixTTL(t *testing.T) {
for i, test := range []struct {
given, expected uint32
}{
{0, 0},
{1, 300},
{299, 300},
{300, 300},
{301, 3600},