Group all call chain-related tests in a single directory

This commit is contained in:
Dmitry Jemerov
2018-02-04 10:36:42 +01:00
parent d7e5eb24ee
commit 2c88b26034
25 changed files with 102 additions and 84 deletions
+8
View File
@@ -0,0 +1,8 @@
fun test() {
Single.just(Object())
.map {
it
}.map {
it // The code unexpectedly shifts to the left
}
}