aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2014-12-28 07:58:08 +0100
committerIvan Topolnjak <ivantopo@gmail.com>2014-12-28 07:58:08 +0100
commit0a6aabd9246a2369e7b66477be8cf921fdc33e46 (patch)
tree6ddd98960eb2fc7daeec5bf3dcb3dbaff6060e0b /kamon-core/src
parentdcfba9454b9891febd4ed24286eb088e85659559 (diff)
parentb6aa0f274f8798863dd091c0200ffeff4084853d (diff)
downloadKamon-0a6aabd9246a2369e7b66477be8cf921fdc33e46.tar.gz
Kamon-0a6aabd9246a2369e7b66477be8cf921fdc33e46.tar.bz2
Kamon-0a6aabd9246a2369e7b66477be8cf921fdc33e46.zip
Merge branch 'master' of github.com:kamon-io/Kamon
Diffstat (limited to 'kamon-core/src')
-rw-r--r--kamon-core/src/test/scala/kamon/util/GlobPathFilterSpec.scala8
1 files changed, 4 insertions, 4 deletions
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