mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-15 09:05:26 +00:00
fix: all enums same style (#262)
* fix: all enums same style * fix: rename process to reduce * add some missing enum renaming Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
@@ -236,7 +236,7 @@ func TestOrgReactivateAggregate(t *testing.T) {
|
||||
AggregateID: "orgID",
|
||||
Sequence: 2,
|
||||
},
|
||||
State: int32(org_model.ORGSTATE_INACTIVE),
|
||||
State: int32(org_model.OrgStateInactive),
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -250,7 +250,7 @@ func TestOrgReactivateAggregate(t *testing.T) {
|
||||
AggregateID: "orgID",
|
||||
Sequence: 2,
|
||||
},
|
||||
State: int32(org_model.ORGSTATE_ACTIVE),
|
||||
State: int32(org_model.OrgStateActive),
|
||||
},
|
||||
},
|
||||
res: res{
|
||||
@@ -310,7 +310,7 @@ func TestOrgDeactivateAggregate(t *testing.T) {
|
||||
AggregateID: "orgID",
|
||||
Sequence: 2,
|
||||
},
|
||||
State: int32(org_model.ORGSTATE_ACTIVE),
|
||||
State: int32(org_model.OrgStateActive),
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -324,7 +324,7 @@ func TestOrgDeactivateAggregate(t *testing.T) {
|
||||
AggregateID: "orgID",
|
||||
Sequence: 2,
|
||||
},
|
||||
State: int32(org_model.ORGSTATE_INACTIVE),
|
||||
State: int32(org_model.OrgStateInactive),
|
||||
},
|
||||
},
|
||||
res: res{
|
||||
|
||||
Reference in New Issue
Block a user