Skip to content

Commit 547377f

Browse files
committed
fix test
1 parent 2e81ca5 commit 547377f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spec/GraphHopperMatrixSpec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe("Matrix Test", function () {
1515
expect(json.distances.length).toBe(4);
1616
// Always 0 by definition
1717
expect(json.distances[0][0]).toBe(0);
18-
expect(json.distances[0][1]).toBeGreaterThan(40000);
18+
expect(json.distances[0][1]).toBeGreaterThan(39000);
1919
expect(json.distances[0][1]).toBeLessThan(52000);
2020
done();
2121
})

spec/GraphHopperRoutingSpec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ describe("i18n Test", function () {
154154

155155
ghRouting.i18n()
156156
.then(function (json) {
157-
expect(json.en['web.hike']).toEqual('Hike');
157+
expect(json.en['web.hike']).toEqual('Hiking');
158158
done();
159159
})
160160
.catch(function (err) {

0 commit comments

Comments
 (0)