Remove extra parenthesis
This commit is contained in:
parent
d00af657a2
commit
13f2439604
1 changed files with 1 additions and 1 deletions
|
|
@ -48,6 +48,6 @@ class EventsRecorder<T>(
|
||||||
}
|
}
|
||||||
|
|
||||||
fun assertTrue(index: Int, predicate: (T) -> Boolean) {
|
fun assertTrue(index: Int, predicate: (T) -> Boolean) {
|
||||||
assertThat((predicate(events[index]))).isTrue()
|
assertThat(predicate(events[index])).isTrue()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue