aboutsummaryrefslogtreecommitdiffstats
path: root/scalding/src/test/scala/sandcrawler
diff options
context:
space:
mode:
authorEllen Spertus <ellen.spertus@gmail.com>2018-06-08 17:15:02 -0700
committerEllen Spertus <ellen.spertus@gmail.com>2018-06-08 17:15:02 -0700
commit8d8ef0d8d19350228ae4d58267b156519ad1fc35 (patch)
tree026493d44050206eb208f9c6b79e8ef490eff4f6 /scalding/src/test/scala/sandcrawler
parent410c48faf2099de74292e8583fcd2524d6fd1b7c (diff)
downloadsandcrawler-8d8ef0d8d19350228ae4d58267b156519ad1fc35.tar.gz
sandcrawler-8d8ef0d8d19350228ae4d58267b156519ad1fc35.zip
Tests pass.
Diffstat (limited to 'scalding/src/test/scala/sandcrawler')
-rw-r--r--scalding/src/test/scala/sandcrawler/HBaseMimeCountTest.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/scalding/src/test/scala/sandcrawler/HBaseMimeCountTest.scala b/scalding/src/test/scala/sandcrawler/HBaseMimeCountTest.scala
index eb6f4ff..cc400c5 100644
--- a/scalding/src/test/scala/sandcrawler/HBaseMimeCountTest.scala
+++ b/scalding/src/test/scala/sandcrawler/HBaseMimeCountTest.scala
@@ -41,7 +41,7 @@ class HBaseMimeCountTest extends FunSpec with TupleConversions {
.arg("app.conf.path", "app.conf")
.arg("output", output)
.arg("debug", "true")
- .source[Tuple](HBaseMimeCountJob.getHBaseSource,
+ .source[Tuple](HBaseCountJob.getHBaseSource("file:mime"),
sampleData.map(l => new Tuple(l.map(s => {new ImmutableBytesWritable(Bytes.toBytes(s))}):_*)))
.sink[Tuple](Tsv(output)) {
outputBuffer =>