refactor: rename config structs (#5459)

This commit is contained in:
Elio Bischof
2023-03-16 18:24:30 +01:00
committed by GitHub
parent 1896f13952
commit 09abf06d4d
27 changed files with 92 additions and 92 deletions

View File

@@ -22,7 +22,7 @@ func TestCommandSide_AddDefaultDebugNotificationProviderFile(t *testing.T) {
}
type args struct {
ctx context.Context
provider *fs.FSConfig
provider *fs.Config
}
type res struct {
want *domain.ObjectDetails
@@ -51,7 +51,7 @@ func TestCommandSide_AddDefaultDebugNotificationProviderFile(t *testing.T) {
},
args: args{
ctx: context.Background(),
provider: &fs.FSConfig{
provider: &fs.Config{
Compact: true,
Enabled: true,
},
@@ -81,7 +81,7 @@ func TestCommandSide_AddDefaultDebugNotificationProviderFile(t *testing.T) {
},
args: args{
ctx: authz.WithInstanceID(context.Background(), "INSTANCE"),
provider: &fs.FSConfig{
provider: &fs.Config{
Compact: true,
},
},
@@ -117,7 +117,7 @@ func TestCommandSide_ChangeDebugNotificationProviderFile(t *testing.T) {
}
type args struct {
ctx context.Context
provider *fs.FSConfig
provider *fs.Config
}
type res struct {
want *domain.ObjectDetails
@@ -139,7 +139,7 @@ func TestCommandSide_ChangeDebugNotificationProviderFile(t *testing.T) {
},
args: args{
ctx: context.Background(),
provider: &fs.FSConfig{
provider: &fs.Config{
Compact: true,
Enabled: true,
},
@@ -165,7 +165,7 @@ func TestCommandSide_ChangeDebugNotificationProviderFile(t *testing.T) {
},
args: args{
ctx: context.Background(),
provider: &fs.FSConfig{
provider: &fs.Config{
Compact: true,
Enabled: false,
},
@@ -191,7 +191,7 @@ func TestCommandSide_ChangeDebugNotificationProviderFile(t *testing.T) {
},
args: args{
ctx: context.Background(),
provider: &fs.FSConfig{
provider: &fs.Config{
Compact: true,
Enabled: true,
},
@@ -227,7 +227,7 @@ func TestCommandSide_ChangeDebugNotificationProviderFile(t *testing.T) {
},
args: args{
ctx: authz.WithInstanceID(context.Background(), "INSTANCE"),
provider: &fs.FSConfig{
provider: &fs.Config{
Compact: false,
Enabled: false,
},