Skip to content

Commit 0bc5dcb

Browse files
committed
dont need to submit these
1 parent 958198b commit 0bc5dcb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

compiler/src/test/scala/com/twitter/mustache/ObjectHandlerTest.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,16 +60,16 @@ class ObjectHandlerTest {
6060
val writer = m.execute(sw, new {
6161
val list = Seq(new {
6262
lazy val optionalHello = Some("Hello")
63-
val futureWorld = pool.submit(new Callable[String] {
63+
val futureWorld = new Callable[String] {
6464
def call(): String = "world"
65-
})
65+
}
6666
val test = true
6767
val num = 0
6868
}, new {
6969
val optionalHello = Some("Goodbye")
70-
val futureWorld = pool.submit(new Callable[String] {
70+
val futureWorld = new Callable[String] {
7171
def call(): String = "thanks for all the fish"
72-
})
72+
}
7373
lazy val test = false
7474
val map = Map(("value", "test"))
7575
val num = 1

0 commit comments

Comments
 (0)