Skip to content

Commit

Permalink
fix: update old name
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Nov 15, 2023
1 parent 767d698 commit f600e9e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions modules/rabbitmq/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
// --------- Bindings ---------

type Binding struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
VHost string
Source string
Destination string
Expand Down Expand Up @@ -75,7 +75,7 @@ func (b Binding) AsCommand() []string {
// --------- Exchange ---------

type Exchange struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
Name string
VHost string
Type string
Expand Down Expand Up @@ -121,7 +121,7 @@ func (e Exchange) AsCommand() []string {
// --------- OperatorPolicy ---------

type OperatorPolicy struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
Name string
Pattern string
Definition map[string]interface{}
Expand Down Expand Up @@ -156,7 +156,7 @@ func (op OperatorPolicy) AsCommand() []string {
// --------- Parameter ---------

type Parameter struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
Component string
Name string
Value string
Expand All @@ -182,7 +182,7 @@ func (p Parameter) AsCommand() []string {
// --------- Permission ---------

type Permission struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
VHost string
User string
Configure string
Expand Down Expand Up @@ -213,7 +213,7 @@ func (p Permission) AsCommand() []string {
// --------- Plugin ---------

type Plugin struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
Name string
}

Expand All @@ -226,7 +226,7 @@ func (p Plugin) AsCommand() []string {
// --------- Policy ---------

type Policy struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
VHost string
Name string
Pattern string
Expand Down Expand Up @@ -268,7 +268,7 @@ func (p Policy) AsCommand() []string {
// --------- Queue ---------

type Queue struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
Name string
VHost string
AutoDelete bool
Expand Down Expand Up @@ -309,7 +309,7 @@ func (q Queue) AsCommand() []string {
// --------- User ---------

type User struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
Name string
Password string
Tags []string
Expand Down Expand Up @@ -338,7 +338,7 @@ func (u User) AsCommand() []string {
// --------- Virtual Hosts --------

type VirtualHost struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
Name string
Tracing bool
}
Expand All @@ -354,7 +354,7 @@ func (v VirtualHost) AsCommand() []string {
}

type VirtualHostLimit struct {
testcontainers.ConfigurableExec
testcontainers.ExecOptions
VHost string
Name string
Value int
Expand Down

0 comments on commit f600e9e

Please sign in to comment.