Skip to content

Commit aca9f69

Browse files
authored
Fix gofmt issue (#266)
Signed-off-by: Mayank Sachan <[email protected]>
1 parent b2f6563 commit aca9f69

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

cos-csi-mounter/server/s3fs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func (args S3FSArgs) PopulateArgsSlice(bucket, targetPath string) ([]string, err
7575
result = append(result, "-o", fmt.Sprintf("ibm_iam_endpoint=%v", val))
7676
delete(m, "ibm_iam_endpoint")
7777
}
78-
78+
7979
for k, v := range m {
8080
result = append(result, "-o")
8181
if strings.ToLower(strings.TrimSpace(v)) == "true" {

cos-csi-mounter/server/s3fs_test.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ func TestS3FSPopulateArgsSlice_Success(t *testing.T) {
2424
EndPoint: "testEndPoint",
2525
IBMIamAuth: "true",
2626
IBMIamEndpoint: testIAMEndpoint,
27-
2827
}
2928

3029
resp, err := args.PopulateArgsSlice(testBucket, testTargetPath)

0 commit comments

Comments
 (0)