From ca33a812e0b4ec7736f065051185d02ab27800ed Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 30 May 2023 23:13:11 +0200 Subject: [PATCH] fix --- .github/workflows/test.yml | 1 + pkg/roles/discovery/api_devices_test.go | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a50dfff0f..399a4c3b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,3 +62,4 @@ jobs: uses: golangci/golangci-lint-action@v3 with: args: --timeout 5000s + skip-cache: true diff --git a/pkg/roles/discovery/api_devices_test.go b/pkg/roles/discovery/api_devices_test.go index 8a2f393f8..7abb95d8d 100644 --- a/pkg/roles/discovery/api_devices_test.go +++ b/pkg/roles/discovery/api_devices_test.go @@ -210,7 +210,7 @@ func TestDeviceApplyDHCPWithDNS(t *testing.T) { "test", "A", ), - dns.Record{ + dnsTypes.Record{ Data: "192.0.2.1", }, ) @@ -224,7 +224,7 @@ func TestDeviceApplyDHCPWithDNS(t *testing.T) { "1.2", "PTR", ), - dns.Record{ + dnsTypes.Record{ Data: "test.gravity.beryju.io.", }, ) @@ -291,7 +291,7 @@ func TestDeviceApplyDNSWithReverse(t *testing.T) { "test", "A", ), - dns.Record{ + dnsTypes.Record{ Data: "192.0.2.1", }, ) @@ -305,7 +305,7 @@ func TestDeviceApplyDNSWithReverse(t *testing.T) { "1.2", "PTR", ), - dns.Record{ + dnsTypes.Record{ Data: "test.gravity.beryju.io.", }, )