diff options
| author | Matthew Sackman <matthew@rabbitmq.com> | 2011-05-10 18:19:19 +0100 |
|---|---|---|
| committer | Matthew Sackman <matthew@rabbitmq.com> | 2011-05-10 18:19:19 +0100 |
| commit | b76b4f03db4e73c40cd62b3a06c8fda18bbec515 (patch) | |
| tree | 8f1ca5d34cca605807e0bcae849ee6bf2d4b1d1f /src | |
| parent | 59bd712ebbcf31743d9da03bd8513bf084e3a121 (diff) | |
| download | rabbitmq-server-git-b76b4f03db4e73c40cd62b3a06c8fda18bbec515.tar.gz | |
Fix racy bug in tests as reported by Simon. Bug created in bug24037 I suspect
Diffstat (limited to 'src')
| -rw-r--r-- | src/rabbit_tests.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_tests.erl b/src/rabbit_tests.erl index 6cb0dbf471..095e358a56 100644 --- a/src/rabbit_tests.erl +++ b/src/rabbit_tests.erl @@ -2074,7 +2074,7 @@ test_queue_index() -> variable_queue_init(Q, Recover) -> rabbit_variable_queue:init( - Q, Recover, fun nop/1, fun nop/1, fun nop/2, fun nop/1). + Q, Recover, fun nop/2, fun nop/2, fun nop/2, fun nop/1). variable_queue_publish(IsPersistent, Count, VQ) -> lists:foldl( |
