Reformat stdlib tests and samples

#KT-5558
This commit is contained in:
Ilya Gorbunov
2018-04-23 16:18:24 +03:00
parent add09e0f2e
commit ecf0d7ec0d
39 changed files with 389 additions and 284 deletions
@@ -71,12 +71,12 @@ class VarByMapExtensionsTest {
@Test fun deprecatedAccessors() {
assertEquals<Int>(
expected = map.getValue(this, VarByMapExtensionsTest::c),
actual = map.getValue<Int>(this, VarByMapExtensionsTest::c)
expected = map.getValue(this, VarByMapExtensionsTest::c),
actual = map.getValue<Int>(this, VarByMapExtensionsTest::c)
)
assertEquals<String>(
expected = map2.getValue<CharSequence, String>(this, VarByMapExtensionsTest::a2),
actual = map2.getValue<String>(this, VarByMapExtensionsTest::a2)
expected = map2.getValue<CharSequence, String>(this, VarByMapExtensionsTest::a2),
actual = map2.getValue<String>(this, VarByMapExtensionsTest::a2)
)
}
}