Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix name of s3Bucket field of Task class in S3BatchEventV2 #506

Merged
merged 1 commit into from
Aug 13, 2024
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 @@ -45,6 +45,6 @@ public static class Task {
private String taskId;
private String s3Key;
private String s3VersionId;
private String s3BucketName;
private String s3Bucket;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,6 @@ public void testS3BatchEventV2() {
assertThat(event.getJob().getUserArguments().get("MyDestinationBucket")).isEqualTo("destination-directory-bucket-name");
assertThat(event.getTasks()).hasSize(1);
assertThat(event.getTasks().get(0).getS3Key()).isEqualTo("s3objectkey");
assertThat(event.getTasks().get(0).getS3Bucket()).isEqualTo("source-directory-bucket-name");
}
}