Skip to content

Commit 5b64ae5

Browse files
committed
fix(azurite): minor code documentation correction
1 parent bda73a3 commit 5b64ae5

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

modules/azure/azurite/options.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ func defaultOptions() options {
1717
}
1818
}
1919

20-
// Satisfy the testcontainers.CustomizeRequestOption interface
20+
// Satisfy the testcontainers.ContainerCustomizer interface
2121
var _ testcontainers.ContainerCustomizer = (Option)(nil)
2222

2323
// Option is an option for the Azurite container.
@@ -38,6 +38,7 @@ func WithEnabledServices(services ...service) Option {
3838
for _, s := range services {
3939
switch s {
4040
case blobService, queueService, tableService:
41+
// valid service, continue
4142
default:
4243
return fmt.Errorf("unknown service: %s", s)
4344
}

modules/azure/eventhubs/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func defaultOptions() options {
2323
}
2424
}
2525

26-
// Satisfy the testcontainers.CustomizeRequestOption interface
26+
// Satisfy the testcontainers.ContainerCustomizer interface
2727
var _ testcontainers.ContainerCustomizer = (Option)(nil)
2828

2929
// Option is an option for the EventHubs container.

modules/azure/servicebus/options.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func defaultOptions() options {
2323
}
2424
}
2525

26-
// Satisfy the testcontainers.CustomizeRequestOption interface
26+
// Satisfy the testcontainers.ContainerCustomizer interface
2727
var _ testcontainers.ContainerCustomizer = (Option)(nil)
2828

2929
// Option is an option for the ServiceBus container.

0 commit comments

Comments
 (0)