diff options
author | Björn Gustavsson <[email protected]> | 2013-11-12 12:13:01 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2014-01-20 12:22:41 +0100 |
commit | 67dfe5adf65d95bff5c1ebffbfbf78a4bbf61089 (patch) | |
tree | ff0976b9b8b256e1b0b2a4395f51994dde6d4ad8 /lib/asn1/test | |
parent | af0c7c0274b843551aa5ac393646d6e59ed89fb2 (diff) | |
download | otp-67dfe5adf65d95bff5c1ebffbfbf78a4bbf61089.tar.gz otp-67dfe5adf65d95bff5c1ebffbfbf78a4bbf61089.tar.bz2 otp-67dfe5adf65d95bff5c1ebffbfbf78a4bbf61089.zip |
Factor out printing of verbose messages
Diffstat (limited to 'lib/asn1/test')
-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 179299c78d..7f358e863c 100644 --- a/lib/asn1/test/test_compile_options.erl +++ b/lib/asn1/test/test_compile_options.erl @@ -123,7 +123,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 true = lists:prefix("Erlang ASN.1 version", Line0), + ?line true = lists:prefix("Erlang ASN.1 compiler", Line0), %% Test non-verbose compile ?line test_server:capture_start(), |