Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdoug committed Jun 23, 2021
1 parent c8bc9d5 commit fb3d415
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:

- name: Add back selected datapack
if: matrix.datapack != ''
run: composer require --dev --no-update "${{ matrix.datapack }}";
run: composer require --dev --no-update "${{ matrix.datapack }}:dev-master";

- name: Remove PHP-CS-Fixer if not called
if: matrix.php-version != '7.4' || matrix.dependencies != 'highest'
Expand Down
4 changes: 2 additions & 2 deletions tests/CoordinateOperation/AutoConversionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ public function testNAD27ToNAD83Canada(): void
self::assertEqualsWithDelta(50.871401224, $to->getLatitude()->asDegrees()->getValue(), 0.00000001);
self::assertEqualsWithDelta(-114.294481160, $to->getLongitude()->asDegrees()->getValue(), 0.00000001);
} else {
self::assertEqualsWithDelta(50.871326856, $to->getLatitude()->asDegrees()->getValue(), 0.00000001);
self::assertEqualsWithDelta(-114.29451650, $to->getLongitude()->asDegrees()->getValue(), 0.00000001);
self::assertEqualsWithDelta(50.871338980, $to->getLatitude()->asDegrees()->getValue(), 0.00000001);
self::assertEqualsWithDelta(-114.29435830, $to->getLongitude()->asDegrees()->getValue(), 0.00000001);
}
}
}

0 comments on commit fb3d415

Please sign in to comment.