8000 Regenerate talent client by yoshi-automation · Pull Request #4884 · googleapis/google-cloud-java · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public void tearDown() throws Exception {
@SuppressWarnings("all")
public void createJobTest() {
JobName name = JobOldName.of("[PROJECT]", "[JOBS]");
String company = "company950484093";
CompanyName company = CompanyOldName.of("[PROJECT]", "[COMPANY]");
String requisitionId = "requisitionId980224926";
String title = "title110371416";
String description = "description-1724546052";
Expand All @@ -115,7 +115,7 @@ public void createJobTest() {
Job expectedResponse =
Job.newBuilder()
.setName(name.toString())
.setCompany(company)
.setCompany(company.toString())
.setRequisitionId(requisitionId)
.setTitle(title)
.setDescription(description)
Expand Down Expand Up @@ -168,7 +168,7 @@ public void createJobExceptionTest() throws Exception {
@SuppressWarnings("all")
public void getJobTest() {
JobName name2 = JobOldName.of("[PROJECT]", "[JOBS]");
String company = "company950484093";
CompanyName company = CompanyOldName.of("[PROJECT]", "[COMPANY]");
String requisitionId = "requisitionId980224926";
String title = "title110371416";
String description = "description-1724546052";
Expand All @@ -182,7 +182,7 @@ public void getJobTest() {
Job expectedResponse =
Job.newBuilder()
.setName(name2.toString())
.setCompany(company)
.setCompany(company.toString())
.setRequisitionId(requisitionId)
.setTitle(title)
.setDescription(description)
Expand Down Expand Up @@ -232,7 +232,7 @@ public void getJobExceptionTest() throws Exception {
@SuppressWarnings("all")
public void updateJobTest() {
JobName name = JobOldName.of("[PROJECT]", "[JOBS]");
String company = "company950484093";
CompanyName company = CompanyOldName.of("[PROJECT]", "[COMPANY]");
String requisitionId = "requisitionId980224926";
String title = "title110371416";
String description = "description-1724546052";
Expand All @@ -246,7 +246,7 @@ public void updateJobTest() {
Job expectedResponse =
Job.newBuilder()
.setName(name.toString())
.setCompany(company)
.setCompany(company.toString())
.setRequisitionId(requisitionId)
.setTitle(title)
.setDescription(description)
Expand Down
6 changes: 3 additions & 3 deletions google-cloud-clients/google-cloud-talent/synth.metadata
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"updateTime": "2019-04-02T07:57:34.877695Z",
"updateTime": "2019-04-03T07:57:05.789692Z",
"sources": [
{
"generator": {
Expand All @@ -12,8 +12,8 @@
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "6c48ab5aef47dc14e02e2dc718d232a28067129d",
"internalRef": "241437588"
"sha": "8dab717b2851750c829530669fe5cebafef22fb8",
"internalRef": "241646671"
}
}
],
Expand Down
0