diff options
author | Björn Gustavsson <[email protected]> | 2012-12-12 11:13:24 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-12-19 11:50:40 +0100 |
commit | 3d1279f3cebfdd2483c3afea9f225613fe45cd00 (patch) | |
tree | 56f81b774ddbe293116337a1b20e1d146e434ebe /lib/asn1/test/testDeepTConstr.erl | |
parent | 062d7bf2ea0760b5e8865aa689ae87cedea7574a (diff) | |
download | otp-3d1279f3cebfdd2483c3afea9f225613fe45cd00.tar.gz otp-3d1279f3cebfdd2483c3afea9f225613fe45cd00.tar.bz2 otp-3d1279f3cebfdd2483c3afea9f225613fe45cd00.zip |
Remove support for the {Typename,Value} notation in encoding
Support for the notation was removed in 6ef8cbdaaaa1c30a7dc462063.
Diffstat (limited to 'lib/asn1/test/testDeepTConstr.erl')
-rw-r--r-- | lib/asn1/test/testDeepTConstr.erl | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/lib/asn1/test/testDeepTConstr.erl b/lib/asn1/test/testDeepTConstr.erl index aa3afbb58f..3df7bcbaa0 100644 --- a/lib/asn1/test/testDeepTConstr.erl +++ b/lib/asn1/test/testDeepTConstr.erl @@ -26,21 +26,19 @@ -include_lib("test_server/include/test_server.hrl"). main(_Erule) -> - Val1 = {'FilterItem', - {substrings, - {'FilterItem_substrings', - {2,6}, - [{initial,"SE"}, - {any,"DK"}, - {final,"N"}]}}}, + Val1 = {substrings, + {'FilterItem_substrings', + {2,6}, + [{initial,"SE"}, + {any,"DK"}, + {final,"N"}]}}, - Val2 = {'FilterItem', - {substrings, - {'FilterItem_substrings', - {2,6}, - [{initial,"SE"}, - {any,"DK"}, - {final,"NO"}]}}}, + Val2 = {substrings, + {'FilterItem_substrings', + {2,6}, + [{initial,"SE"}, + {any,"DK"}, + {final,"NO"}]}}, ?line {ok,Bytes1} = asn1_wrapper:encode('TConstrChoice','FilterItem',Val1), |