diff options
author | Raimo Niskanen <[email protected]> | 2014-04-17 16:29:51 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2014-07-25 12:14:44 +0200 |
commit | 373d9fa059875a2d68251c485968d3aa78e830b4 (patch) | |
tree | befc6315db5b1da0790120cb12eb03f7bfb9dc16 /lib/snmp/test/snmp_conf_test.erl | |
parent | 7bc7e5821ea0614ca82467bf0349f82b61d89971 (diff) | |
download | otp-373d9fa059875a2d68251c485968d3aa78e830b4.tar.gz otp-373d9fa059875a2d68251c485968d3aa78e830b4.tar.bz2 otp-373d9fa059875a2d68251c485968d3aa78e830b4.zip |
wip-all-regression-tests-but-one-manager
Diffstat (limited to 'lib/snmp/test/snmp_conf_test.erl')
-rw-r--r-- | lib/snmp/test/snmp_conf_test.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/snmp/test/snmp_conf_test.erl b/lib/snmp/test/snmp_conf_test.erl index c4341d8d7e..5c8acb48a5 100644 --- a/lib/snmp/test/snmp_conf_test.erl +++ b/lib/snmp/test/snmp_conf_test.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2003-2010. All Rights Reserved. +%% Copyright Ericsson AB 2003-2014. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -401,7 +401,7 @@ check_taddress(Config) when is_list(Config) -> ok. verify_taddress(Val) -> - case (catch snmp_conf:check_taddress(Val)) of + case (catch snmp_conf:check_taddress(snmpUDPDomain, Val)) of {error, Reason} -> ?FAIL({verify_taddress, Val, Reason}); ok -> @@ -409,7 +409,7 @@ verify_taddress(Val) -> end. verify_not_taddress(Val) -> - case (catch snmp_conf:check_taddress(Val)) of + case (catch snmp_conf:check_taddress(snmpUDPDomain, Val)) of ok -> ?FAIL({verify_taddress, Val}); {error, _Reason} -> |