Replaced sure() invocations with '!!' operator in JS tests.

This commit is contained in:
Evgeny Gerashchenko
2012-09-14 17:16:24 +04:00
parent 8e1323bb43
commit ffc4792071
5 changed files with 12 additions and 12 deletions
@@ -128,7 +128,7 @@ class P() : BodyTag("p")
class H1() : BodyTag("h1")
class A() : BodyTag("a") {
public var href : String
get() = attributes["href"].sure()
get() = attributes["href"]!!
set(value) {
attributes["href"] = value
}