diff options
| author | Michael Klishin <mklishin@pivotal.io> | 2016-12-21 14:30:06 +0300 |
|---|---|---|
| committer | Michael Klishin <mklishin@pivotal.io> | 2016-12-21 14:30:06 +0300 |
| commit | badf82983611f5777b8d756f7ebc6f40a91d32d5 (patch) | |
| tree | ca1e6e052c9a350ab552a623c7a00c93bc9a79f0 | |
| parent | 8fd90cb5d3fe608c8b9ca31665e435e06c5f73ed (diff) | |
| download | rabbitmq-server-git-badf82983611f5777b8d756f7ebc6f40a91d32d5.tar.gz | |
Drive by change: squash a few warnings in worker_pool_SUITE
| -rw-r--r-- | test/worker_pool_SUITE.erl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/worker_pool_SUITE.erl b/test/worker_pool_SUITE.erl index 7eb4d6fd04..5a673430ab 100644 --- a/test/worker_pool_SUITE.erl +++ b/test/worker_pool_SUITE.erl @@ -41,7 +41,7 @@ end_per_testcase(_, Config) -> unlink(Pool), exit(Pool, kill). -run_code_synchronously(Config) -> +run_code_synchronously(_Config) -> Self = self(), Test = make_ref(), Sleep = 200, @@ -63,7 +63,7 @@ run_code_synchronously(Config) -> % Worker is a separate process true = (Self /= Result). -run_code_asynchronously(Config) -> +run_code_asynchronously(_Config) -> Self = self(), Test = make_ref(), Sleep = 200, @@ -84,7 +84,7 @@ run_code_asynchronously(Config) -> % Worker is a separate process true = (Self /= Result). -set_timeout(Config) -> +set_timeout(_Config) -> Self = self(), Test = make_ref(), Worker = worker_pool:submit(?POOL_NAME, @@ -112,7 +112,7 @@ set_timeout(Config) -> end. -cancel_timeout(Config) -> +cancel_timeout(_Config) -> Self = self(), Test = make_ref(), Worker = worker_pool:submit(?POOL_NAME, @@ -146,7 +146,7 @@ cancel_timeout(Config) -> after 0 -> ok end. -cancel_timeout_by_setting(Config) -> +cancel_timeout_by_setting(_Config) -> Self = self(), Test = make_ref(), Worker = worker_pool:submit(?POOL_NAME, |
