diff options
author | Björn Gustavsson <[email protected]> | 2010-09-06 14:23:33 +0200 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-09-06 14:23:33 +0200 |
commit | e37663d48f048c5948f882a34e3ad761ca4db762 (patch) | |
tree | cd9493922ba4b8643b7caaf7f532581a3d7b71ac /lib/asn1 | |
parent | 4d4578bc9c4c7ccb2345f6f1c083a9a5716ab2a1 (diff) | |
parent | da97a8200946f2c4ef330004dc30ac31e4c3c366 (diff) | |
download | otp-e37663d48f048c5948f882a34e3ad761ca4db762.tar.gz otp-e37663d48f048c5948f882a34e3ad761ca4db762.tar.bz2 otp-e37663d48f048c5948f882a34e3ad761ca4db762.zip |
Merge branch 'ta/asn1-test-compile-options' into dev
* ta/asn1-test-compile-options:
Fix asn1_SUITE test_compile_options:verbose/1
Diffstat (limited to 'lib/asn1')
-rw-r--r-- | lib/asn1/test/test_compile_options.erl | 2 |
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(), |