aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Larsson <[email protected]>2012-08-28 16:50:41 +0200
committerLukas Larsson <[email protected]>2012-08-30 15:37:31 +0200
commit7a57b91fd08f3ca9bffb8d5a02ab797a10a21ec8 (patch)
treefa5ae0eeb5a4f58fdb6922d3a5b818010a7f0399
parentc9034896271dd9fc8f8e19810e06baf46198336d (diff)
downloadotp-7a57b91fd08f3ca9bffb8d5a02ab797a10a21ec8.tar.gz
otp-7a57b91fd08f3ca9bffb8d5a02ab797a10a21ec8.tar.bz2
otp-7a57b91fd08f3ca9bffb8d5a02ab797a10a21ec8.zip
Do not verify del_path as it is not always there
-rw-r--r--lib/asn1/test/asn1_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/asn1_SUITE.erl b/lib/asn1/test/asn1_SUITE.erl
index 56f31de638..b0c37d79e7 100644
--- a/lib/asn1/test/asn1_SUITE.erl
+++ b/lib/asn1/test/asn1_SUITE.erl
@@ -248,7 +248,7 @@ init_per_testcase(Func, Config) ->
[{case_dir, CaseDir}, {watchdog, Dog}|Config].
end_per_testcase(_Func, Config) ->
- true = code:del_path(?config(case_dir, Config)),
+ code:del_path(?config(case_dir, Config)),
test_server:timetrap_cancel(?config(watchdog, Config)).
%%------------------------------------------------------------------------------