1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

fixing tests

This commit is contained in:
Patrik J. Braun 2019-03-14 22:29:09 +01:00
parent 43142299aa
commit 86b526d260

View File

@ -135,16 +135,16 @@ export class TestHelper {
p.metadata.positionData.state = 'Research City';
p.metadata.positionData.country = 'Kamino';
p.name = 'sw2';
p.metadata.faces = [<any>{
box: {height: 10, width: 10, x: 10, y: 10},
p.metadata.faces = [<FaceRegion>{
box: {height: 10, width: 10, left: 10, top: 10},
name: 'Padmé Amidala'
}, <any>{
box: {height: 10, width: 10, x: 101, y: 101},
}, <FaceRegion>{
box: {height: 10, width: 10, left: 101, top: 101},
name: 'Anakin Skywalker'
}, <any>{
box: {height: 10, width: 10, x: 101, y: 101},
}, <FaceRegion>{
box: {height: 10, width: 10, left: 101, top: 101},
name: 'Obivan Kenobi'
}];
}] as any[];
return p;
}