fix bad coordinates in integration tests
This commit is contained in:
parent
ab6959038e
commit
c189bc4f51
|
@ -70,16 +70,16 @@ describe('Ad Repository', () => {
|
||||||
};
|
};
|
||||||
const originWaypoint = {
|
const originWaypoint = {
|
||||||
position: 0,
|
position: 0,
|
||||||
lon: 43.7102,
|
lat: 43.7102,
|
||||||
lat: 7.262,
|
lon: 7.262,
|
||||||
locality: "'Nice'",
|
locality: "'Nice'",
|
||||||
postalCode: "'06000'",
|
postalCode: "'06000'",
|
||||||
country: "'France'",
|
country: "'France'",
|
||||||
};
|
};
|
||||||
const destinationWaypoint = {
|
const destinationWaypoint = {
|
||||||
position: 1,
|
position: 1,
|
||||||
lon: 43.2965,
|
lat: 43.2965,
|
||||||
lat: 5.3698,
|
lon: 5.3698,
|
||||||
locality: "'Marseille'",
|
locality: "'Marseille'",
|
||||||
postalCode: "'13000'",
|
postalCode: "'13000'",
|
||||||
country: "'France'",
|
country: "'France'",
|
||||||
|
@ -211,8 +211,8 @@ describe('Ad Repository', () => {
|
||||||
postalCode: '06000',
|
postalCode: '06000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 43.7102,
|
lat: 43.7102,
|
||||||
lat: 7.262,
|
lon: 7.262,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -223,8 +223,8 @@ describe('Ad Repository', () => {
|
||||||
postalCode: '13000',
|
postalCode: '13000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 43.2965,
|
lat: 43.2965,
|
||||||
lat: 5.3698,
|
lon: 5.3698,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -299,8 +299,8 @@ describe('Ad Repository', () => {
|
||||||
postalCode: '06000',
|
postalCode: '06000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 43.7102,
|
lat: 43.7102,
|
||||||
lat: 7.262,
|
lon: 7.262,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -311,8 +311,8 @@ describe('Ad Repository', () => {
|
||||||
postalCode: '13000',
|
postalCode: '13000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 43.2965,
|
lat: 43.2965,
|
||||||
lat: 5.3698,
|
lon: 5.3698,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue