Skip to content

Commit

Permalink
fix dem test
Browse files Browse the repository at this point in the history
  • Loading branch information
Molly Lloyd committed Oct 4, 2017
1 parent b9c3134 commit 2fb24da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/data/dem_data.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ test('DEMData#backfillBorder', (t) => {
let nonempty = true;
for (let x = -1; x < 5; x++) {
for (let y = -1; y < 5; y++) {
if (level0.get(x, y) <= 0) {
if (level0.get(x, y) === -65536) {
nonempty = false;
break;
}
Expand Down

0 comments on commit 2fb24da

Please sign in to comment.