diff options
author | Björn Gustavsson <[email protected]> | 2010-03-10 07:32:19 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2010-03-11 10:26:48 +0100 |
commit | 44cc5dfcbea91ef419c55a70c67c87b3a44e7a79 (patch) | |
tree | 17d04199de37685bfc686cdf7152b93591f4e2b9 /lib/asn1/test/test_undecoded_rest.erl | |
parent | c5dff500f4ae51fc2182b1646538e54129e63c37 (diff) | |
download | otp-44cc5dfcbea91ef419c55a70c67c87b3a44e7a79.tar.gz otp-44cc5dfcbea91ef419c55a70c67c87b3a44e7a79.tar.bz2 otp-44cc5dfcbea91ef419c55a70c67c87b3a44e7a79.zip |
asn1 tests: Modernize guard tests
Diffstat (limited to 'lib/asn1/test/test_undecoded_rest.erl')
-rw-r--r-- | lib/asn1/test/test_undecoded_rest.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/asn1/test/test_undecoded_rest.erl b/lib/asn1/test/test_undecoded_rest.erl index 0649957a1c..193cdd8860 100644 --- a/lib/asn1/test/test_undecoded_rest.erl +++ b/lib/asn1/test/test_undecoded_rest.erl @@ -39,9 +39,9 @@ test(Opt) -> ?line {ok,Msg} = asn1ct:value('P-Record','PersonnelRecord'), ?line {ok,Bytes} = asn1_wrapper:encode('P-Record','PersonnelRecord',Msg), Bytes2 = - fun(B) when list(B) -> + fun(B) when is_list(B) -> B ++ [55,55,55]; - (B) when binary(B) -> + (B) when is_binary(B) -> concat_binary([B,<<55,55,55>>]) end (Bytes), |