diff options
| author | Michael Klishin <mklishin@pivotal.io> | 2016-09-15 18:33:04 +0300 |
|---|---|---|
| committer | Michael Klishin <mklishin@pivotal.io> | 2016-09-15 18:33:25 +0300 |
| commit | b52470750d82d5653c8b23e6a5c93c3a2df6faad (patch) | |
| tree | c4ef8e3febc66f153e7f7a72daebc79b356fe2f8 | |
| parent | d64eb05f2473440e14b19b5b01b247f19389ff4e (diff) | |
| download | rabbitmq-server-git-b52470750d82d5653c8b23e6a5c93c3a2df6faad.tar.gz | |
Update expectations for new credit flow values
| -rw-r--r-- | test/unit_inbroker_SUITE.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit_inbroker_SUITE.erl b/test/unit_inbroker_SUITE.erl index e9ecbf5444..98cd77ccbe 100644 --- a/test/unit_inbroker_SUITE.erl +++ b/test/unit_inbroker_SUITE.erl @@ -1684,15 +1684,15 @@ credit_flow_settings(Config) -> credit_flow_settings1(_Config) -> %% default values - passed = test_proc(200, 50), + passed = test_proc(200, 100), - application:set_env(rabbit, credit_flow_default_credit, {100, 20}), - passed = test_proc(100, 20), + application:set_env(rabbit, credit_flow_default_credit, {100, 300}), + passed = test_proc(100, 300), application:unset_env(rabbit, credit_flow_default_credit), % back to defaults - passed = test_proc(200, 50), + passed = test_proc(200, 100), passed. test_proc(InitialCredit, MoreCreditAfter) -> |
