@@ -10,7 +10,7 @@ import (
1010 "github.com/hashicorp/terraform-plugin-sdk/terraform"
1111)
1212
13- var dummyCertificate = `
13+ var testCertificate = `
1414-----BEGIN CERTIFICATE-----
1515MIIDYDCCAkgCCQDR6L3N+0qMNjANBgkqhkiG9w0BAQUFADByMQswCQYDVQQGEwJ1
1616czELMAkGA1UECAwCY2ExDTALBgNVBAoMBHRlc3QxDTALBgNVBAsMBHRlc3QxDTAL
@@ -40,7 +40,7 @@ func TestAccSumologicSamlConfiguration_basic(t *testing.T) {
4040 Issuer : "test" ,
4141 SpInitiatedLoginEnabled : false ,
4242 AuthnRequestUrl : "" ,
43- X509cert1 : dummyCertificate ,
43+ X509cert1 : testCertificate ,
4444 X509cert2 : "" ,
4545 X509cert3 : "" ,
4646 OnDemandProvisioningEnabled : & OnDemandProvisioningEnabled {
@@ -82,7 +82,7 @@ func TestAccSumologicSamlConfiguration_create(t *testing.T) {
8282 Issuer : "tf_test" ,
8383 SpInitiatedLoginEnabled : false ,
8484 AuthnRequestUrl : "https://myurl.com" ,
85- X509cert1 : dummyCertificate ,
85+ X509cert1 : testCertificate ,
8686 X509cert2 : "" ,
8787 X509cert3 : "" ,
8888 OnDemandProvisioningEnabled : & OnDemandProvisioningEnabled {
@@ -123,7 +123,7 @@ func TestAccSumologicSamlConfiguration_update(t *testing.T) {
123123 Issuer : "tf_test2" ,
124124 SpInitiatedLoginEnabled : false ,
125125 AuthnRequestUrl : "https://myurl.com" ,
126- X509cert1 : dummyCertificate ,
126+ X509cert1 : testCertificate ,
127127 X509cert2 : "" ,
128128 X509cert3 : "" ,
129129 OnDemandProvisioningEnabled : & OnDemandProvisioningEnabled {
@@ -148,7 +148,7 @@ resource "sumologic_saml_configuration" "update_test" {
148148 x509cert1 = <<EOT
149149%s
150150EOT
151- }` , dummyCertificate )
151+ }` , testCertificate )
152152
153153 resource .Test (t , resource.TestCase {
154154 PreCheck : func () { testAccPreCheck (t ) },
0 commit comments