aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/test_compile_options.erl
diff options
context:
space:
mode:
authorTuncer Ayaz <[email protected]>2010-04-24 17:39:37 +0200
committerTuncer Ayaz <[email protected]>2010-08-26 15:21:42 +0200
commitda97a8200946f2c4ef330004dc30ac31e4c3c366 (patch)
treee9c797d16b43daf9a07d517fe059ff50e4c7ae1f /lib/asn1/test/test_compile_options.erl
parent1b4a6172d8d2df4362d6d084daef02804e10ebb6 (diff)
downloadotp-da97a8200946f2c4ef330004dc30ac31e4c3c366.tar.gz
otp-da97a8200946f2c4ef330004dc30ac31e4c3c366.tar.bz2
otp-da97a8200946f2c4ef330004dc30ac31e4c3c366.zip
Fix asn1_SUITE test_compile_options:verbose/1
Match true = lists:prefix/2.
Diffstat (limited to 'lib/asn1/test/test_compile_options.erl')
-rw-r--r--lib/asn1/test/test_compile_options.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/test_compile_options.erl b/lib/asn1/test/test_compile_options.erl
index 83f38c5e6d..5e027cdedb 100644
--- a/lib/asn1/test/test_compile_options.erl
+++ b/lib/asn1/test/test_compile_options.erl
@@ -132,7 +132,7 @@ verbose(Config) when is_list(Config) ->
?line ok = asn1ct:compile(Asn1File, [{i,DataDir},{outdir,OutDir},noobj,verbose]),
?line test_server:capture_stop(),
?line [Line0|_] = test_server:capture_get(),
- ?line lists:prefix("Erlang ASN.1 version", Line0),
+ ?line true = lists:prefix("Erlang ASN.1 version", Line0),
%% Test non-verbose compile
?line test_server:capture_start(),