From 469a147f321931639b714451c4f207726b638ca3 Mon Sep 17 00:00:00 2001 From: Andrew Gardner Date: Wed, 16 Oct 2024 23:36:25 +1100 Subject: [PATCH] Corrected sign error typo in LatLngTest.kt --- app/src/test/kotlin/fr/free/nrw/commons/location/LatLngTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/test/kotlin/fr/free/nrw/commons/location/LatLngTest.kt b/app/src/test/kotlin/fr/free/nrw/commons/location/LatLngTest.kt index 9e0c459fd..575beab98 100644 --- a/app/src/test/kotlin/fr/free/nrw/commons/location/LatLngTest.kt +++ b/app/src/test/kotlin/fr/free/nrw/commons/location/LatLngTest.kt @@ -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