diff options
author | Anders Svensson <[email protected]> | 2013-04-12 16:46:06 +0200 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2013-04-15 10:10:02 +0200 |
commit | 439a579e79bc334dc38dfe905c53957cbaefc499 (patch) | |
tree | 3610b1d6929236c9d32897f630970bfcae3cf8ef /lib/diameter | |
parent | 74308a391b333c7840ed0f9fd05396c4f57c765c (diff) | |
download | otp-439a579e79bc334dc38dfe905c53957cbaefc499.tar.gz otp-439a579e79bc334dc38dfe905c53957cbaefc499.tar.bz2 otp-439a579e79bc334dc38dfe905c53957cbaefc499.zip |
Minor traffic suite fix
Point was to test that Session-Id was not undefined. Instead, test case
send_error just returned false.
Diffstat (limited to 'lib/diameter')
-rw-r--r-- | lib/diameter/test/diameter_traffic_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/diameter/test/diameter_traffic_SUITE.erl b/lib/diameter/test/diameter_traffic_SUITE.erl index e3caacd795..2684ab8fe4 100644 --- a/lib/diameter/test/diameter_traffic_SUITE.erl +++ b/lib/diameter/test/diameter_traffic_SUITE.erl @@ -560,7 +560,7 @@ send_error(Config) -> Req = ['RAR', {'Re-Auth-Request-Type', ?AUTHORIZE_AUTHENTICATE}], ?answer_message(SId, ?TOO_BUSY) = call(Config, Req), - undefined /= SId. + true = undefined /= SId. %% Send a request with the detached option and receive it as a message %% from handle_answer instead. |