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