Show
Ignore:
Timestamp:
07/23/09 21:47:41 (3 years ago)
Author:
elemoine
Message:

Protocol.Map Fish? "bbox" property, r=bbinet (closes #496)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/MapFish/client/mfbase/mapfish/tests/core/Protocol/MapFish.html

    r2729 r2731  
    107107        }; 
    108108        protocol.filterAdapter(options); 
    109         t.eq(options.params.box, bbox, 
    110              "filterAdapter sets correct box param if passed a BBOX filter"); 
     109        t.eq(options.params.bbox, bbox, 
     110             "filterAdapter sets correct bbox param if passed a BBOX filter"); 
    111111        t.eq(options.filter, undefined, 
    112112             "filterAdapter deletes filter if passed a BBOX filter"); 
     
    197197 
    198198        protocol.filterAdapter(options); 
    199         t.eq(options.params.box, "0,0,10,10", 
    200              "filterAdapter sets correct box param if passed a Logical filter containing a BBOX"); 
     199        t.eq(options.params.bbox, "0,0,10,10", 
     200             "filterAdapter sets correct bbox param if passed a Logical filter containing a BBOX"); 
    201201        t.eq(options.filter, undefined, 
    202202             "filterAdapter deletes filter");