diff options
author | Björn Gustavsson <[email protected]> | 2012-11-12 09:54:47 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2012-11-22 17:23:12 +0100 |
commit | d2989f33c435e1ec2b788772c5e4a77835ec5e10 (patch) | |
tree | 5eb8b03768c3da943a308ef12f1d0f515765f097 /lib/asn1/test/testSeqOf.erl | |
parent | 3d8455a53e1980c82cf329c9bbe01ce51c17248b (diff) | |
download | otp-d2989f33c435e1ec2b788772c5e4a77835ec5e10.tar.gz otp-d2989f33c435e1ec2b788772c5e4a77835ec5e10.tar.bz2 otp-d2989f33c435e1ec2b788772c5e4a77835ec5e10.zip |
Remove tests for the obsolete {TypeName,Value} notation
As a preparation for removing obsolete back-ends, remove tests
for the {TypeName,Value} notation to avoid having those test cases
fail.
Diffstat (limited to 'lib/asn1/test/testSeqOf.erl')
-rw-r--r-- | lib/asn1/test/testSeqOf.erl | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/asn1/test/testSeqOf.erl b/lib/asn1/test/testSeqOf.erl index 0c0bbc3e66..89c9375c62 100644 --- a/lib/asn1/test/testSeqOf.erl +++ b/lib/asn1/test/testSeqOf.erl @@ -198,15 +198,6 @@ main(Rules) -> ?line {ok,Bytes51} = asn1_wrapper:encode('SeqOf','SeqEmp',#'SeqEmp'{seq1 = [#'Empty'{}]}), ?line {ok,{'SeqEmp',[{'Empty'}]}} = asn1_wrapper:decode('SeqOf','SeqEmp',lists:flatten(Bytes51)), - - case Rules of - ber -> - ?line {ok,Bytes52} = asn1_wrapper:encode('SeqOfEnum','SeqOfEnum', - {'SeqOfEnum',[{'Enum',a},{'Enum',b}]}), - ?line {ok,[a,b]} = asn1_wrapper:decode('SeqOfEnum','SeqOfEnum', - lists:flatten(Bytes52)); - _ -> ok - end, %% tests of OTP-4590 case Rules of |