fix(psk): fix too long style error

This commit is contained in:
firest 2022-03-18 10:25:13 +08:00
parent 435b22273d
commit ea52e0c05d
1 changed files with 2 additions and 1 deletions

View File

@ -34,7 +34,8 @@ init_per_suite(Config) ->
(KeyPath) -> meck:passthrough([KeyPath])
end),
meck:expect(emqx_config, get, fun([psk_authentication, init_file], _) ->
filename:join([code:lib_dir(emqx_psk, test), "data/init.psk"]);
filename:join([code:lib_dir(emqx_psk, test),
"data/init.psk"]);
([psk_authentication, separator], _) -> <<":">>;
(KeyPath, Default) -> meck:passthrough([KeyPath, Default])
end),