Skip to content

Commit 5755fc2

Browse files
committed
Merge branch 'frazze/kernel/code_SUITE_cwd_path_fix'
OTP-19842
2 parents c93daa5 + 6fec5e3 commit 5755fc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/kernel/test/code_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1150,7 +1150,7 @@ mult_lib_roots(Config) when is_list(Config) ->
11501150
Path0 = rpc:call(Node, code, get_path, []),
11511151
%% ?CT_PEER adds extra path to this module folder
11521152
PathToSelf = filename:dirname(code:which(?MODULE)),
1153-
[PathToSelf, "."|Path1] = Path0,
1153+
[PathToSelf|Path1] = Path0,
11541154
[Kernel|Path2] = Path1,
11551155
[Stdlib|Path3] = Path2,
11561156
mult_lib_verify_lib(Kernel, "kernel"),

0 commit comments

Comments
 (0)