Fix syntax in Kotlin example
This commit is contained in:
parent
947255e377
commit
65a395ef0e
|
@ -8183,8 +8183,8 @@ assertions use the https://joel-costigliola.github.io/assertj/[AssertJ] assertio
|
||||||
[source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]
|
[source,kotlin,indent=0,subs="verbatim,quotes",role="secondary"]
|
||||||
.Kotlin
|
.Kotlin
|
||||||
----
|
----
|
||||||
assertThat(viewMessagePage.message.isEqualTo(expectedMessage)
|
assertThat(viewMessagePage.message).isEqualTo(expectedMessage)
|
||||||
assertThat(viewMessagePage.success.isEqualTo("Successfully created a new message")
|
assertThat(viewMessagePage.success).isEqualTo("Successfully created a new message")
|
||||||
----
|
----
|
||||||
|
|
||||||
We can see that our `ViewMessagePage` lets us interact with our custom domain model. For
|
We can see that our `ViewMessagePage` lets us interact with our custom domain model. For
|
||||||
|
|
Loading…
Reference in New Issue