Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jens-maus committed Nov 23, 2023
1 parent 9f17350 commit 4480a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dvbjs/test/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ describe("dvb.findAddress", () => {
dvb.findAddress(lng, lat).then((address) => {
assert.isDefined(address);
assert.strictEqual(address!.name, "Nöthnitzer Straße 44a");
assert.strictEqual(address!.city, "Dresden");
assert.strictEqual(address!.city, "(Dresden)");
assert.strictEqual(address!.type, dvb.POI_TYPE.Coords);
assert.approximately(address!.coords[0], lng, 0.001);
assert.approximately(address!.coords[1], lat, 0.001);
Expand Down

0 comments on commit 4480a91

Please sign in to comment.