Tweak margin character in test

This commit is contained in:
Alexandre Archambault 2017-06-12 02:00:41 +02:00
parent b3d07e1353
commit e7fad2316f
1 changed files with 5 additions and 5 deletions

View File

@ -18,11 +18,11 @@ object TreeTests extends TestSuite {
'apply {
val str = Tree[Node](roots)(_.children, _.label)
assert(str == """├─ p1
├─ c1
└─ c2
└─ p2
├─ c3
└─ c4""".stripMargin)
#├─ c1
#└─ c2
#└─ p2
# ├─ c3
# └─ c4""".stripMargin('#'))
}
}
}