@@ -26,7 +26,6 @@ func TestAccGitlabServiceJira_basic(t *testing.T) {
26
26
Check : resource .ComposeTestCheckFunc (
27
27
testAccCheckGitlabServiceJiraExists (jiraResourceName , & jiraService ),
28
28
resource .TestCheckResourceAttr (jiraResourceName , "url" , "https://test.com" ),
29
- resource .TestCheckResourceAttr (jiraResourceName , "api_url" , "https://test.com/api" ),
30
29
resource .TestCheckResourceAttr (jiraResourceName , "username" , "user1" ),
31
30
resource .TestCheckResourceAttr (jiraResourceName , "password" , "mypass" ),
32
31
resource .TestCheckResourceAttr (jiraResourceName , "commit_events" , "true" ),
@@ -55,7 +54,7 @@ func TestAccGitlabServiceJira_basic(t *testing.T) {
55
54
Check : resource .ComposeTestCheckFunc (
56
55
testAccCheckGitlabServiceJiraExists (jiraResourceName , & jiraService ),
57
56
resource .TestCheckResourceAttr (jiraResourceName , "url" , "https://test.com" ),
58
- resource .TestCheckResourceAttr (jiraResourceName , "api_url" , "https://test .com/api " ),
57
+ resource .TestCheckResourceAttr (jiraResourceName , "api_url" , "https://testurl .com/rest " ),
59
58
resource .TestCheckResourceAttr (jiraResourceName , "username" , "user1" ),
60
59
resource .TestCheckResourceAttr (jiraResourceName , "password" , "mypass" ),
61
60
resource .TestCheckResourceAttr (jiraResourceName , "commit_events" , "true" ),
@@ -165,7 +164,6 @@ resource "gitlab_project" "foo" {
165
164
resource "gitlab_service_jira" "jira" {
166
165
project = "${gitlab_project.foo.id}"
167
166
url = "https://test.com"
168
- api_url = "https://test.com/api"
169
167
username = "user1"
170
168
password = "mypass"
171
169
commit_events = true
0 commit comments