aboutsummaryrefslogtreecommitdiff
path: root/test/modules
diff options
context:
space:
mode:
Diffstat (limited to 'test/modules')
-rw-r--r--test/modules/location.spec.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/modules/location.spec.ts b/test/modules/location.spec.ts
index 7ca81672..349eb891 100644
--- a/test/modules/location.spec.ts
+++ b/test/modules/location.spec.ts
@@ -388,8 +388,8 @@ describe('location', () => {
)(
'should return random gps coordinate within a distance of another one (%j)',
({ isMetric, radius }) => {
- const latitude1 = +fakerFn.location.latitude();
- const longitude1 = +fakerFn.location.longitude();
+ const latitude1 = fakerFn.location.latitude();
+ const longitude1 = fakerFn.location.longitude();
const coordinate = fakerFn.location.nearbyGPSCoordinate({
origin: [latitude1, longitude1],