diff options
author | Kenneth Lundin <kenneth.lundin@ericsson.com> | 2020-04-23 12:07:24 +0200 |
---|---|---|
committer | Kenneth Lundin <kenneth.lundin@ericsson.com> | 2020-04-23 12:07:24 +0200 |
commit | 0c309173f0c89b7a5b9ce3d46b5536dba6c7ac25 (patch) | |
tree | c107ab0da934aaf2746d94aefaaaf63c42b4b2c7 /lib/asn1 | |
parent | 3d679b69c47d282419ae07cbf34873c070de289a (diff) | |
download | erlang-0c309173f0c89b7a5b9ce3d46b5536dba6c7ac25.tar.gz |
Correct printout that shows which encoding rules the tests are done for.
Diffstat (limited to 'lib/asn1')
-rw-r--r-- | lib/asn1/test/testEnumExt.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asn1/test/testEnumExt.erl b/lib/asn1/test/testEnumExt.erl index b30750f7fc..cb01ad481f 100644 --- a/lib/asn1/test/testEnumExt.erl +++ b/lib/asn1/test/testEnumExt.erl @@ -41,7 +41,7 @@ main(Rule) when Rule =:= per; Rule =:= uper -> B64 = roundtrip('Noext', red), common(Rule); main(Rule) when Rule =:= ber; Rule =:= jer -> - io:format("main(ber)~n",[]), + io:format("main(~p)~n",[Rule]), %% ENUMERATED with extensionmark (value is in root set) roundtrip('Ext', red), |