Minor: assert -> assertTrue
This commit is contained in:
committed by
Ilya Ryzhenkov
parent
4ea62071b5
commit
9b081fd254
@@ -90,8 +90,8 @@ class MapTest {
|
|||||||
|
|
||||||
test fun contains() {
|
test fun contains() {
|
||||||
val map = mapOf("a" to 1, "b" to 2)
|
val map = mapOf("a" to 1, "b" to 2)
|
||||||
assert("a" in map)
|
assertTrue("a" in map)
|
||||||
assert("c" !in map)
|
assertTrue("c" !in map)
|
||||||
}
|
}
|
||||||
|
|
||||||
test fun map() {
|
test fun map() {
|
||||||
|
|||||||
Reference in New Issue
Block a user