diff --git a/src/pkg/api/airgap_test.go b/src/pkg/api/airgap_test.go deleted file mode 100644 index a5759894..00000000 --- a/src/pkg/api/airgap_test.go +++ /dev/null @@ -1,25 +0,0 @@ -package api - -import ( - "testing" - - "github.com/stretchr/testify/require" -) - -func TestAirgap(t *testing.T) { - tests := []struct { - name string - server string - expected bool - }{ - {name: "in airgap", server: "runtime-local.uds.dev", expected: false}, - {name: "not in airgap", server: "probably.not.a.website", expected: true}, - } - - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - actual := isAirgapped(tt.server) - require.Equal(t, tt.expected, actual) - }) - } -}