File tree Expand file tree Collapse file tree 3 files changed +2
-62
lines changed
language-adaptors/rxjava-scala/src/test/scala/rx/lang/scala Expand file tree Collapse file tree 3 files changed +2
-62
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ DEFAULT_JVM_OPTS=""
1212APP_NAME=" Gradle"
1313APP_BASE_NAME=` basename " $0 " `
1414
15- JAVA_HOME=" /Library/Java/JavaVirtualMachines/jdk1.7.0_40.jdk/Contents/Home"
16-
1715# Use the maximum available, or set MAX_FD != -1 to use that value.
1816MAX_FD=" maximum"
1917
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -3,9 +3,8 @@ package rx.lang.scala.subscriptions
33import org .junit .Assert ._
44import org .junit .Test
55import org .scalatest .junit .JUnitSuite
6- import rx .lang .scala ._
7-
86
7+ import rx .lang .scala .Subscription
98
109class SubscriptionTests extends JUnitSuite {
1110
@@ -47,7 +46,7 @@ class SubscriptionTests extends JUnitSuite {
4746 val s0 = BooleanSubscription { u0 = true }
4847
4948 var u1 = false
50- val s1 = rx.lang.scala. Subscription { u1 = true }
49+ val s1 = Subscription { u1 = true }
5150
5251 val composite = CompositeSubscription ()
5352
You can’t perform that action at this time.
0 commit comments