aboutsummaryrefslogtreecommitdiffstats
path: root/lib/parsetools/test/yecc_SUITE.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2016-10-05 16:24:52 +0200
committerHans Bolinder <[email protected]>2016-10-05 16:24:52 +0200
commit05be21eb0ad09fcdd63d955ed1d5b50ed34af925 (patch)
tree3cf62251d9c3a22d74f67fa2f6c6852ca5b878ee /lib/parsetools/test/yecc_SUITE.erl
parent1de609cb262ff34216dce8fbefdb9a153bdd2c93 (diff)
parent2990325d5ae7f7fd119aea540a2edae4f97e76d9 (diff)
downloadotp-05be21eb0ad09fcdd63d955ed1d5b50ed34af925.tar.gz
otp-05be21eb0ad09fcdd63d955ed1d5b50ed34af925.tar.bz2
otp-05be21eb0ad09fcdd63d955ed1d5b50ed34af925.zip
Merge branch 'hasse/parsetools/fix_leex_counting/ERL-263/OTP-13916' into maint
* hasse/parsetools/fix_leex_counting/ERL-263/OTP-13916: parsetools: Correct counting of newlines
Diffstat (limited to 'lib/parsetools/test/yecc_SUITE.erl')
-rw-r--r--lib/parsetools/test/yecc_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/parsetools/test/yecc_SUITE.erl b/lib/parsetools/test/yecc_SUITE.erl
index e91ddb11d1..5bd71d5d19 100644
--- a/lib/parsetools/test/yecc_SUITE.erl
+++ b/lib/parsetools/test/yecc_SUITE.erl
@@ -2009,7 +2009,7 @@ otp_11286(Config) when is_list(Config) ->
Dir = ?privdir,
UName = [1024] ++ "u",
UDir = filename:join(Dir, UName),
- ok = rpc:call(Node, file, make_dir, [UDir]),
+ _ = rpc:call(Node, file, make_dir, [UDir]),
%% Note: Cannot use UName as filename since the filename is used
%% as module name. To be fixed in R18.