Skip to content

Commit af71273

Browse files
committed
lint
1 parent 3aee5b2 commit af71273

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
},
1919
"require-dev": {
2020
"phpunit/phpunit": "7",
21-
"squizlabs/php_codesniffer": "3.0.1",
21+
"squizlabs/php_codesniffer": "3.6.0",
2222
"phpdocumentor/phpdocumentor": "2.9",
2323
"jms/serializer": "1.7.1"
2424
},

tests/Parse/ParseGeoPointTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ public function testGeoPointBase()
4242

4343
// Round trip encoding
4444
$actualPoint = $results[0]->get('location');
45-
$this->assertEqualsWithDelta(44.0, $actualPoint->getLatitude(), 0.0001, '');
46-
$this->assertEqualsWithDelta(-11.0, $actualPoint->getLongitude(), 0.0001, '');
45+
$this->assertEquals(44.0, $actualPoint->getLatitude());
46+
$this->assertEquals(-11.0, $actualPoint->getLongitude());
4747

4848
// nearsphere
4949
$point->setLatitude(66.0);

0 commit comments

Comments
 (0)