Replaced sure() invocations with '!!' operator in JS tests.
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user