Corrected sign error typo in LatLngTest.kt

This commit is contained in:
Andrew Gardner 2024-10-16 23:36:25 +11:00 committed by GitHub
parent 06f27ef80e
commit 469a147f32
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,7 @@ class LatLngTest {
@Test
fun testConstructorBigLongitude() {
latLng1 = LatLng(0.0, 181.0, 0.0f)
assertThat(latLng1.longitude, equalTo(179.0))
assertThat(latLng1.longitude, equalTo(-179.0))
}
@Test