From 58ec8bbe6a5192dc9cba9752324e1f793da156f2 Mon Sep 17 00:00:00 2001 From: Diego Date: Sat, 27 Dec 2014 17:09:38 -0300 Subject: + system-metrics: fix #135 and includes the following new metrics: ** DiskMetrics ** NonHeapMetrics ** LoadAverageMetrics ** ThreadMetrics ** ClassLoadingMetrics and closes #131 --- kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'kamon-core/src/test') diff --git a/kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala b/kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala index 47ef4701..83992e61 100644 --- a/kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala +++ b/kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala @@ -16,7 +16,7 @@ package kamon.util -import org.scalatest.{Matchers, WordSpecLike} +import org.scalatest.{ Matchers, WordSpecLike } class GlobPathFilterSpec extends WordSpecLike with Matchers { "The GlobPathFilter" should { @@ -41,18 +41,18 @@ class GlobPathFilterSpec extends WordSpecLike with Matchers { } "match all expressions and crosses the path boundaries" in { - val filter = new GlobPathFilter("/user/actor-**") + val filter = new GlobPathFilter("/user/actor-**") filter.accept("/user/actor-") shouldBe true filter.accept("/user/actor-one") shouldBe true filter.accept("/user/actor-one/other") shouldBe true filter.accept("/user/something/actor") shouldBe false - filter.accept("/user/something/otherActor")shouldBe false + filter.accept("/user/something/otherActor") shouldBe false } "match exactly one characterr" in { - val filter = new GlobPathFilter("/user/actor-?") + val filter = new GlobPathFilter("/user/actor-?") filter.accept("/user/actor-1") shouldBe true filter.accept("/user/actor-2") shouldBe true -- cgit v1.2.3