Skip to content

Commit

Permalink
Update to use property syntax
Browse files Browse the repository at this point in the history
Co-authored-by: Artyom Vlasov <mr.twago@gmail.com>
  • Loading branch information
Antonis Lilis and justtwago authored Oct 12, 2023
1 parent b90b05d commit 0739f39
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -543,9 +543,9 @@ class SiteRestClientTest {
with((responseModel as Success).data) {
assertThat(domains).hasSize(2)
assertThat(domains[0].domain).isEqualTo("some.test.domain")
assertThat(domains[0].wpcomDomain).isFalse()
assertThat(domains[0].wpcomDomain).isFalse
assertThat(domains[1].domain).isEqualTo("some.test.domain 2")
assertThat(domains[1].wpcomDomain).isTrue()
assertThat(domains[1].wpcomDomain).isTrue
}
}

Expand Down

0 comments on commit 0739f39

Please sign in to comment.