aboutsummaryrefslogtreecommitdiff
path: root/kamon-core
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2015-08-24 14:24:24 -0300
committerDiego <diegolparra@gmail.com>2015-08-25 10:13:22 -0300
commitaa1c38de58d692f90275867fdfda437b99bd8dcc (patch)
treec83866b7ade84596f4ea44ebb31201e9afed7bc4 /kamon-core
parentde676d611103c8b5f49514a097b51c30b555e314 (diff)
downloadKamon-aa1c38de58d692f90275867fdfda437b99bd8dcc.tar.gz
Kamon-aa1c38de58d692f90275867fdfda437b99bd8dcc.tar.bz2
Kamon-aa1c38de58d692f90275867fdfda437b99bd8dcc.zip
! kamon-akka: change in DispatcherInstrumentation the type of Dispatcher to ForkJoinPool instead of AkkaForkJoinPool
Diffstat (limited to 'kamon-core')
-rw-r--r--kamon-core/src/test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/kamon-core/src/test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala b/kamon-core/src/test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala
index 91f3cb71..b3bc7623 100644
--- a/kamon-core/src/test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala
+++ b/kamon-core/src/test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala
@@ -31,7 +31,7 @@ class ExecutorServiceMetricsSpec extends BaseKamonSpec("executor-service-metrics
findExecutorRecorder("single-thread-pool") should not be empty
ExecutorServiceMetrics.remove("single-thread-pool")
- findExecutorRecorder("single-thread-pool") should be (empty)
+ findExecutorRecorder("single-thread-pool") should be(empty)
}
"register a ThreadPoolExecutor, collect their metrics and remove it" in {
@@ -40,7 +40,7 @@ class ExecutorServiceMetricsSpec extends BaseKamonSpec("executor-service-metrics
findExecutorRecorder("thread-pool-executor") should not be empty
ExecutorServiceMetrics.remove("thread-pool-executor")
- findExecutorRecorder("thread-pool-executor") should be (empty)
+ findExecutorRecorder("thread-pool-executor") should be(empty)
}
"register a ScheduledThreadPoolExecutor, collect their metrics and remove it" in {
@@ -49,7 +49,7 @@ class ExecutorServiceMetricsSpec extends BaseKamonSpec("executor-service-metrics
findExecutorRecorder("scheduled-thread-pool-executor") should not be empty
ExecutorServiceMetrics.remove("scheduled-thread-pool-executor")
- findExecutorRecorder("scheduled-thread-pool-executor") should be (empty)
+ findExecutorRecorder("scheduled-thread-pool-executor") should be(empty)
}
"register a Java ForkJoinPool, collect their metrics and remove it" in {
@@ -58,7 +58,7 @@ class ExecutorServiceMetricsSpec extends BaseKamonSpec("executor-service-metrics
findExecutorRecorder("java-fork-join-pool") should not be empty
ExecutorServiceMetrics.remove("java-fork-join-pool")
- findExecutorRecorder("java-fork-join-pool") should be (empty)
+ findExecutorRecorder("java-fork-join-pool") should be(empty)
}
"register a Scala ForkJoinPool, collect their metrics and remove it" in {
@@ -67,7 +67,7 @@ class ExecutorServiceMetricsSpec extends BaseKamonSpec("executor-service-metrics
findExecutorRecorder("scala-fork-join-pool") should not be empty
ExecutorServiceMetrics.remove("scala-fork-join-pool")
- findExecutorRecorder("scala-fork-join-pool") should be (empty)
+ findExecutorRecorder("scala-fork-join-pool") should be(empty)
}
def findExecutorRecorder(name: String): Option[EntityRecorder] =