test(emqx_bridge_v2_SUITE): fix incorrect assumption about return type
This commit fixes an incorrect assumption about the return type of emqx_bridge_v2:lookup/2 in emqx_bridge_v2_SUITE:t_load_config_success/1.
This commit is contained in:
parent
14e305e2a6
commit
77aaff137a
|
@ -667,8 +667,8 @@ t_load_config_success(_Config) ->
|
|||
),
|
||||
?assertMatch(
|
||||
{ok, #{
|
||||
type := BridgeType,
|
||||
name := BridgeName,
|
||||
type := BridgeTypeBin,
|
||||
name := BridgeNameBin,
|
||||
raw_config := #{<<"some_key">> := <<"new_value">>},
|
||||
resource_data := #{}
|
||||
}},
|
||||
|
|
Loading…
Reference in New Issue