From 07edf1ccad9c3268324926471dd0c8a7433f0c08 Mon Sep 17 00:00:00 2001 From: Ellen Spertus Date: Tue, 24 Jul 2018 14:27:33 -0700 Subject: Clean-up --- scalding/src/test/scala/sandcrawler/HBaseCrossrefScoreTest.scala | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'scalding/src/test/scala') diff --git a/scalding/src/test/scala/sandcrawler/HBaseCrossrefScoreTest.scala b/scalding/src/test/scala/sandcrawler/HBaseCrossrefScoreTest.scala index 8bdc7a8..a59b278 100644 --- a/scalding/src/test/scala/sandcrawler/HBaseCrossrefScoreTest.scala +++ b/scalding/src/test/scala/sandcrawler/HBaseCrossrefScoreTest.scala @@ -110,11 +110,12 @@ class HBaseCrossrefScoreTest extends FlatSpec with Matchers { "titleToSlug()" should "extract the parts of titles before a colon" in { val slug = HBaseCrossrefScore.titleToSlug("HELLO:there") - slug shouldBe "hello" + slug should contain ("hello") } + it should "extract an entire colon-less string" in { val slug = HBaseCrossrefScore.titleToSlug("hello THERE") - slug shouldBe "hello there" + slug should contain ("hello there") } "grobidToSlug()" should "get the right slug for a grobid json string" in { -- cgit v1.2.3