We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 958198b commit 0bc5dcbCopy full SHA for 0bc5dcb
1 file changed
compiler/src/test/scala/com/twitter/mustache/ObjectHandlerTest.scala
@@ -60,16 +60,16 @@ class ObjectHandlerTest {
60
val writer = m.execute(sw, new {
61
val list = Seq(new {
62
lazy val optionalHello = Some("Hello")
63
- val futureWorld = pool.submit(new Callable[String] {
+ val futureWorld = new Callable[String] {
64
def call(): String = "world"
65
- })
+ }
66
val test = true
67
val num = 0
68
}, new {
69
val optionalHello = Some("Goodbye")
70
71
def call(): String = "thanks for all the fish"
72
73
lazy val test = false
74
val map = Map(("value", "test"))
75
val num = 1
0 commit comments