@@ -88,7 +88,7 @@ describe("<FarmDesigner />", () => {
8888 expect ( legendProps . imageAgeInfo ) . toEqual ( { newestDate : "" , toOldest : 1 } ) ;
8989 const gardenMapProps = wrapper . find ( GardenMap ) . props ( ) ;
9090 expect ( gardenMapProps . mapTransformProps . gridSize . x ) . toEqual ( 2900 ) ;
91- expect ( gardenMapProps . mapTransformProps . gridSize . y ) . toEqual ( 1400 ) ;
91+ expect ( gardenMapProps . mapTransformProps . gridSize . y ) . toEqual ( 1230 ) ;
9292 } ) ;
9393
9494 it ( "loads image info" , ( ) => {
@@ -199,7 +199,7 @@ describe("<FarmDesigner />", () => {
199199describe ( "getDefaultAxisLength()" , ( ) => {
200200 it ( "returns axis lengths" , ( ) => {
201201 const axes = getDefaultAxisLength ( ( ) => false ) ;
202- expect ( axes ) . toEqual ( { x : 2900 , y : 1400 , z : 400 } ) ;
202+ expect ( axes ) . toEqual ( { x : 2900 , y : 1230 , z : 400 } ) ;
203203 } ) ;
204204} ) ;
205205
@@ -212,7 +212,7 @@ describe("getGridSize()", () => {
212212 y : { value : 200 , isDefault : false } ,
213213 z : { value : 400 , isDefault : true } ,
214214 } ) ;
215- expect ( grid ) . toEqual ( { x : 2900 , y : 1400 } ) ;
215+ expect ( grid ) . toEqual ( { x : 2900 , y : 1230 } ) ;
216216 } ) ;
217217
218218 it ( "returns custom grid size" , ( ) => {
0 commit comments