Change variable name

This commit is contained in:
Sushant 2019-02-18 19:39:36 +01:00
parent 74e52749d4
commit 19b0b02102
1 changed files with 35 additions and 35 deletions

View File

@ -19,9 +19,9 @@ class StringComparisonUnitTest {
fun `compare using referential equals operator`() {
val first = "kotlin"
val second = "kotlin"
val firstBuildAgain = buildString { "kotlin" }
val copyOfFirst = buildString { "kotlin" }
assertTrue { first === second }
assertFalse { first === firstBuildAgain }
assertFalse { first === copyOfFirst }
}
@Test