Skip to content

Commit

Permalink
stdlib: Fix edlin_expand_SUITE:filename_completion
Browse files Browse the repository at this point in the history
  • Loading branch information
garazdawi committed Oct 3, 2022
1 parent 662e92b commit 1ae6b51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/stdlib/test/edlin_expand_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ filename_completion(Config) ->
{yes,"/", [{"../",_}]} = do_expand("\".."),
{yes,"ta/", _} = do_expand("\"../edlin_expand_SUITE_da"),
{yes,"erl\"",[{"complete_function_parameter.erl",_}]} = do_expand("\"complete_function_parameter."),
R = case {os:type(), filename:native_name_encoding()} of
R = case {os:type(), file:native_name_encoding()} of
{{win32,_}, _} -> {skip, "Unicode on filenames in windows are tricky"};
{_,latin1} -> {skip, "Cannot interpret unicode filenames when native_name_encoding is latin1"};
_ ->
Expand Down

0 comments on commit 1ae6b51

Please sign in to comment.