aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/testX420.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/asn1/test/testX420.erl')
-rw-r--r--lib/asn1/test/testX420.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/asn1/test/testX420.erl b/lib/asn1/test/testX420.erl
index cbe14c2455..00c9221e9d 100644
--- a/lib/asn1/test/testX420.erl
+++ b/lib/asn1/test/testX420.erl
@@ -83,9 +83,9 @@ specs() ->
ticket7759(_Erule,_Config) ->
Encoded = encoded_msg(),
io:format("Testing ticket7759 ...~n",[]),
- ?line {ok, ContentInfo} = asn1_wrapper:decode('PKCS7','ContentInfo',Encoded),
- ?line {'ContentInfo',_Id,PKCS7_content} = ContentInfo,
- ?line {ok,_} = asn1_wrapper:decode('PKCS7','SignedData',PKCS7_content),
+ {ok, ContentInfo} = 'PKCS7':decode('ContentInfo',Encoded),
+ {'ContentInfo',_Id,PKCS7_content} = ContentInfo,
+ {ok,_} = 'PKCS7':decode('SignedData',PKCS7_content),
ok.