Skip to content

Commit

Permalink
[0.0.3] 순서 결함 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
kimdohun0104 committed Oct 22, 2020
1 parent ce844bf commit 19e9fef
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 4 deletions.
16 changes: 16 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ infix fun <T> LiveData<T>.test(block: LiveDataTest<T>.() -> Unit) {
* Assertion extensions
*/
infix fun <T> LiveDataTest<T>.equalTo(expected: Any?) {
assertEquals(value, expected)
assertEquals(expected, value)
}

infix fun <T> LiveDataTest<T>.notEqualTo(expected: Any?) {
assertNotEquals(value, expected)
assertNotEquals(expected, value)
}

fun <T> LiveDataTest<T>.hasValue() {
Expand Down

0 comments on commit 19e9fef

Please sign in to comment.