Skip to content

Commit bcaab13

Browse files
committed
fix message for gingko it funcs
1 parent 7f2ca75 commit bcaab13

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

controllers/cloudstorages/aws_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ rclone copy --s3-no-check-bucket --s3-env-auth testStoragePath ${GATLING_AGGREGA
118118
`
119119
})
120120
Context("Provider is aws", func() {
121-
It("provider is aws", func() {
121+
It("returns commands with s3 rclone config", func() {
122122
csp := &AWSCloudStorageProvider{providerName: provider}
123123
Expect(csp.GetGatlingAggregateResultCommand(resultsDirectoryPath, region, storagePath)).To(Equal(expectedValue))
124124
})
@@ -145,7 +145,7 @@ rclone copy ${GATLING_AGGREGATE_DIR} --exclude "*.log" --s3-no-check-bucket --s3
145145
`
146146
})
147147
Context("Provider is aws", func() {
148-
It("provider is aws", func() {
148+
It("returns commands with s3 rclone config", func() {
149149
csp := &AWSCloudStorageProvider{providerName: provider}
150150
Expect(csp.GetGatlingTransferReportCommand(resultsDirectoryPath, region, storagePath)).To(Equal(expectedValue))
151151
})

controllers/cloudstorages/gcp_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ done
9393
`
9494
})
9595
Context("Provider is gcp", func() {
96-
It("provider is gcp", func() {
96+
It("returns commands with gcs rclone config", func() {
9797
csp := &GCPCloudStorageProvider{providerName: provider}
9898
Expect(csp.GetGatlingTransferResultCommand(resultsDirectoryPath, region, storagePath)).To(Equal(expectedValue))
9999
})
@@ -121,7 +121,7 @@ rclone copy testStoragePath ${GATLING_AGGREGATE_DIR}
121121
`
122122
})
123123
Context("Provider is gcp", func() {
124-
It("provider is gcp", func() {
124+
It("returns commands with gcs rclone config", func() {
125125
gcp := &GCPCloudStorageProvider{providerName: provider}
126126
Expect(gcp.GetGatlingAggregateResultCommand(resultsDirectoryPath, region, storagePath)).To(Equal(expectedValue))
127127
})
@@ -149,7 +149,7 @@ rclone copy ${GATLING_AGGREGATE_DIR} --exclude "*.log" testStoragePath
149149
`
150150
})
151151
Context("Provider is gcp", func() {
152-
It("provider is gcp", func() {
152+
It("returns commands with gcs rclone config", func() {
153153
gcp := &GCPCloudStorageProvider{providerName: provider}
154154
Expect(gcp.GetGatlingTransferReportCommand(resultsDirectoryPath, region, storagePath)).To(Equal(expectedValue))
155155
})

0 commit comments

Comments
 (0)