mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 00:57:33 +00:00
fix: new es testing (#1411)
* fix: org tests * fix: org tests * fix: user grant test * fix: user grant test * fix: project and project role test * fix: project grant test * fix: project grant test * fix: project member, grant member, app changed tests * fix: application tests * fix: application tests * fix: add oidc app test * fix: add oidc app test * fix: add api keys test * fix: iam policies * fix: iam and org member tests * fix: clock skew validation * revert crypto changes * fix: tests * fix project grant member commands Co-authored-by: Livio Amstutz <livio.a@gmail.com>
This commit is contained in:
@@ -350,13 +350,13 @@ func Test_eventData(t *testing.T) {
|
||||
}
|
||||
for _, tt := range tests {
|
||||
t.Run(tt.name, func(t *testing.T) {
|
||||
got, err := eventData(tt.args.event)
|
||||
got, err := EventData(tt.args.event)
|
||||
if (err != nil) != tt.res.wantErr {
|
||||
t.Errorf("eventData() error = %v, wantErr %v", err, tt.res.wantErr)
|
||||
t.Errorf("EventData() error = %v, wantErr %v", err, tt.res.wantErr)
|
||||
return
|
||||
}
|
||||
if !reflect.DeepEqual(got, tt.res.jsonText) {
|
||||
t.Errorf("eventData() = %v, want %v", string(got), string(tt.res.jsonText))
|
||||
t.Errorf("EventData() = %v, want %v", string(got), string(tt.res.jsonText))
|
||||
}
|
||||
})
|
||||
}
|
||||
|
Reference in New Issue
Block a user