diff options
author | Ellen Spertus <ellen.spertus@gmail.com> | 2018-06-05 11:57:31 -0700 |
---|---|---|
committer | Ellen Spertus <ellen.spertus@gmail.com> | 2018-06-05 11:57:31 -0700 |
commit | e746171526f578789c55d7aa690cc8381e139439 (patch) | |
tree | 8a51b5b811b7fc98056faf77a6a1fe11645005b5 /scalding/src/test/scala/example | |
parent | b21cc924224202aba412370acafaaa4846bb4a8d (diff) | |
download | sandcrawler-e746171526f578789c55d7aa690cc8381e139439.tar.gz sandcrawler-e746171526f578789c55d7aa690cc8381e139439.zip |
Made package names match directory names. Cleaned up imports.
Diffstat (limited to 'scalding/src/test/scala/example')
-rw-r--r-- | scalding/src/test/scala/example/WordCountTest.scala | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scalding/src/test/scala/example/WordCountTest.scala b/scalding/src/test/scala/example/WordCountTest.scala index c42770f..b3f3b64 100644 --- a/scalding/src/test/scala/example/WordCountTest.scala +++ b/scalding/src/test/scala/example/WordCountTest.scala @@ -13,8 +13,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ -package com.twitter.scalding +package example +import com.twitter.scalding.{ JobTest, TextLine, TypedTsv } import org.scalatest.{ Matchers, WordSpec } class WordCountTest extends WordSpec with Matchers { |