Skip to content

Commit

Permalink
Fix Untested attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
Coderlxl committed Sep 7, 2020
1 parent 1583b81 commit 7d162df
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public void testDefaults()
.setPinS3ClientToCurrentRegion(false)
.setS3UserAgentPrefix("")
.setS3AclType(PrestoS3AclType.PRIVATE)
.setS3CsvComments("\uFDD0")
.setSkipGlacierObjects(false)
.setRequesterPaysEnabled(false));
}
Expand Down Expand Up @@ -104,6 +105,7 @@ public void testExplicitPropertyMappings()
.put("hive.s3.pin-client-to-current-region", "true")
.put("hive.s3.user-agent-prefix", "user-agent-prefix")
.put("hive.s3.upload-acl-type", "PUBLIC_READ")
.put("hive.s3.csv-comments", "#")
.put("hive.s3.skip-glacier-objects", "true")
.put("hive.s3.requester-pays.enabled", "true")
.build();
Expand Down Expand Up @@ -137,6 +139,7 @@ public void testExplicitPropertyMappings()
.setPinS3ClientToCurrentRegion(true)
.setS3UserAgentPrefix("user-agent-prefix")
.setS3AclType(PrestoS3AclType.PUBLIC_READ)
.setS3CsvComments("#")
.setSkipGlacierObjects(true)
.setRequesterPaysEnabled(true);

Expand Down

0 comments on commit 7d162df

Please sign in to comment.