Skip to content

Commit c336c68

Browse files
committed
hardcode conversation username
1 parent 7839b7a commit c336c68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/IBM.WatsonDeveloperCloud.Assistant.v1.IntegrationTests/AssistantServiceIntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void Setup()
7979

8080
var vcapServices = JObject.Parse(credentials);
8181
_endpoint = vcapServices["conversation"]["url"].Value<string>();
82-
_username = vcapServices["conversation"]["username"].Value<string>();
82+
_username = "4f25be3c-32af-4bd6-84d8-663724bfbb45";
8383
_password = vcapServices["conversation"]["password"].Value<string>();
8484
_workspaceID = "506e4a2e-3d5d-4dca-b374-38edbb4139ab";
8585
}

test/IBM.WatsonDeveloperCloud.Conversation.v1.IntegrationTests/ConversationIntegrationTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public void Setup()
7878
var vcapServices = JObject.Parse(credentials);
7979

8080
_endpoint = vcapServices["conversation"]["url"].Value<string>();
81-
_username = vcapServices["conversation"]["username"].Value<string>();
81+
_username = "4f25be3c-32af-4bd6-84d8-663724bfbb45";
8282
_password = vcapServices["conversation"]["password"].Value<string>();
8383
_workspaceID = "506e4a2e-3d5d-4dca-b374-38edbb4139ab";
8484
}

0 commit comments

Comments
 (0)