@@ -3866,16 +3866,16 @@ defineSuite([
3866
3866
} ) ;
3867
3867
} ) ;
3868
3868
3869
- it ( 'can load styles from a KML file with namespaces' , function ( ) {
3870
- return KmlDataSource . load ( 'Data/KML/namespaced.kml' , options ) . then ( function ( dataSource ) {
3871
- console . debug ( dataSource . entities . values [ 2 ] ) ;
3872
- var polyline = dataSource . entities . values [ 2 ] . polyline ;
3873
- var expectedColor = Color . fromBytes ( 0xff , 0x00 , 0xff , 0x00 ) ;
3874
- var polylineColor = polyline . material . color . getValue ( ) ;
3875
- expect ( polylineColor ) . toEqual ( expectedColor ) ;
3876
- expect ( polyline . width . getValue ( ) ) . toEqual ( 10 ) ;
3877
- } ) ;
3878
- } ) ;
3869
+ it ( 'can load styles from a KML file with namespaces' , function ( ) {
3870
+ return KmlDataSource . load ( 'Data/KML/namespaced.kml' , options ) . then ( function ( dataSource ) {
3871
+ console . debug ( dataSource . entities . values [ 2 ] ) ;
3872
+ var polyline = dataSource . entities . values [ 2 ] . polyline ;
3873
+ var expectedColor = Color . fromBytes ( 0xff , 0x00 , 0xff , 0x00 ) ;
3874
+ var polylineColor = polyline . material . color . getValue ( ) ;
3875
+ expect ( polylineColor ) . toEqual ( expectedColor ) ;
3876
+ expect ( polyline . width . getValue ( ) ) . toEqual ( 10 ) ;
3877
+ } ) ;
3878
+ } ) ;
3879
3879
3880
3880
it ( 'Boolean values can use true string' , function ( ) {
3881
3881
var kml = '<?xml version="1.0" encoding="UTF-8"?>\
@@ -3960,7 +3960,7 @@ defineSuite([
3960
3960
return KmlDataSource . load ( parser . parseFromString ( kml , 'text/xml' ) , options ) . then ( function ( dataSource ) {
3961
3961
expect ( dataSource . entities . values . length ) . toEqual ( 1 ) ;
3962
3962
expect ( console . warn . calls . count ( ) ) . toEqual ( 1 ) ;
3963
- expect ( console . warn ) . toHaveBeenCalledWith ( 'KML - Unsupported Icon refreshMode: onInterval' ) ;
3963
+ expect ( console . warn ) . toHaveBeenCalledWith ( 'KML - Unsupported Icon refreshMode: onInterval' ) ;
3964
3964
} ) ;
3965
3965
} ) ;
3966
3966
0 commit comments