Skip to content

Commit

Permalink
reproduce issue #134
Browse files Browse the repository at this point in the history
  • Loading branch information
tsdeng committed Sep 25, 2013
1 parent 2e0968d commit 342484a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chill-scala/src/test/scala/com/twitter/chill/KryoSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ class KryoSpec extends Specification with BaseProperties {
}
"handle trait with reference of self" in {
var a= new ExampleUsingSelf{}
var b=rt(a)
b.addOne.count must be_==(1)
var b=rt(a.addOne)
b.count must be_==(1)
}
"handle manifests" in {
rt(manifest[Int]) must be_==(manifest[Int])
Expand Down

0 comments on commit 342484a

Please sign in to comment.