File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,20 @@ fn check_types_are_storing_values() {
92
92
BaseMessage :: RegisterHookResponse { request_id } => {
93
93
assert_eq ! ( request_id, & String :: from( "request_id" ) ) ;
94
94
}
95
- BaseMessage :: TriggerHookRequest { request_id, hook, data } => {
95
+ BaseMessage :: TriggerHookRequest {
96
+ request_id,
97
+ hook,
98
+ data,
99
+ } => {
96
100
assert_eq ! ( request_id, & String :: from( "request_id" ) ) ;
97
101
assert_eq ! ( hook, & String :: from( "hook" ) ) ;
98
102
assert_eq ! ( data, & Value :: Null ) ;
99
103
}
100
- BaseMessage :: TriggerHookResponse { request_id, hook, data } => {
104
+ BaseMessage :: TriggerHookResponse {
105
+ request_id,
106
+ hook,
107
+ data,
108
+ } => {
101
109
assert_eq ! ( request_id, & String :: from( "request_id" ) ) ;
102
110
assert_eq ! ( hook, & Some ( String :: from( "hook" ) ) ) ;
103
111
assert_eq ! ( data, & Value :: Null ) ;
You can’t perform that action at this time.
0 commit comments