From 869cff05923939d6cd6a8dad1bc49db770bea8a0 Mon Sep 17 00:00:00 2001 From: "denys.kostynchuk" Date: Thu, 14 Nov 2024 09:17:42 +1300 Subject: [PATCH] Expect is_disabled to be false by default --- .../resource_listening_tentacle_worker_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/octopusdeploy_framework/resource_listening_tentacle_worker_test.go b/octopusdeploy_framework/resource_listening_tentacle_worker_test.go index 151cf59b..e42fc3f0 100644 --- a/octopusdeploy_framework/resource_listening_tentacle_worker_test.go +++ b/octopusdeploy_framework/resource_listening_tentacle_worker_test.go @@ -88,7 +88,7 @@ func testAssertListeningTentacleWorkerCreate(expected listeningTentacleWorkerTes resource.TestCheckResourceAttr(prefix, "uri", expected.uri), resource.TestCheckResourceAttr(prefix, "thumbprint", expected.thumbprint), resource.TestCheckNoResourceAttr(prefix, "proxy_id"), - resource.TestCheckNoResourceAttr(prefix, "is_disabled"), + resource.TestCheckResourceAttr(prefix, "is_disabled", "false"), ) }