aboutsummaryrefslogtreecommitdiffstats
path: root/lib/parsetools/test/yecc_SUITE.erl
diff options
context:
space:
mode:
authorHans Bolinder <[email protected]>2016-10-05 16:30:48 +0200
committerHans Bolinder <[email protected]>2016-10-05 16:30:48 +0200
commit88acd9cbdea2b342206b7a2e5ba8b904dbfd10a7 (patch)
treea4764fba2487755624e5d341aecec765f4f7f233 /lib/parsetools/test/yecc_SUITE.erl
parent0bac72a18e8a5f6a46baae9c9ac73bde32948ff6 (diff)
parent05be21eb0ad09fcdd63d955ed1d5b50ed34af925 (diff)
downloadotp-88acd9cbdea2b342206b7a2e5ba8b904dbfd10a7.tar.gz
otp-88acd9cbdea2b342206b7a2e5ba8b904dbfd10a7.tar.bz2
otp-88acd9cbdea2b342206b7a2e5ba8b904dbfd10a7.zip
Merge branch 'maint'
* maint: 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.