Skip to content

Commit

Permalink
[hotfix] minor: make type explicit to allow Scala test to compile in …
Browse files Browse the repository at this point in the history
…Eclipse
  • Loading branch information
mjsax committed Apr 27, 2016
1 parent 16059ea commit 8ad264d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ private[extensions] abstract class AcceptPFTestBase extends TestLogger with JUni

private val env = ExecutionEnvironment.getExecutionEnvironment

protected val tuples = env.fromElements(1 -> "hello", 2 -> "world")
protected val tuples = env.fromElements(new Integer(1) -> "hello", new Integer(2) -> "world")
protected val caseObjects = env.fromElements(KeyValuePair(1, "hello"), KeyValuePair(2, "world"))

protected val groupedTuples = tuples.groupBy(_._1)
Expand Down

0 comments on commit 8ad264d

Please sign in to comment.