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(
|
?assertMatch(
|
||||||
{ok, #{
|
{ok, #{
|
||||||
type := BridgeType,
|
type := BridgeTypeBin,
|
||||||
name := BridgeName,
|
name := BridgeNameBin,
|
||||||
raw_config := #{<<"some_key">> := <<"new_value">>},
|
raw_config := #{<<"some_key">> := <<"new_value">>},
|
||||||
resource_data := #{}
|
resource_data := #{}
|
||||||
}},
|
}},
|
||||||
|
|
Loading…
Reference in New Issue