Skip to content

Commit 6fec5e3

Browse files
committed
kernel: test code_SUITE multi_lib_roots fix
1 parent f626a18 commit 6fec5e3

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)