File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -180,17 +180,17 @@ test('Raster#getAverageColor(path) with compound path', function() {
180180 { tolerance : 1e-3 } ) ;
181181} ) ;
182182
183- test ( 'Raster#smoothing defaults to true ' , function ( ) {
183+ test ( 'Raster#smoothing defaults to false ' , function ( ) {
184184 var raster = new Raster ( ) ;
185- equals ( raster . smoothing , true ) ;
185+ equals ( raster . smoothing , false ) ;
186186} ) ;
187187
188188test ( 'Raster#smoothing' , function ( ) {
189- var raster = new Raster ( { smoothing : false } ) ;
190- equals ( raster . smoothing , false ) ;
191-
192- raster . smoothing = true ;
189+ var raster = new Raster ( { smoothing : true } ) ;
193190 equals ( raster . smoothing , true ) ;
191+
192+ raster . smoothing = false ;
193+ equals ( raster . smoothing , false ) ;
194194} ) ;
195195
196196test ( 'Raster#setSmoothing setting does not impact canvas context' , function ( assert ) {
You can’t perform that action at this time.
0 commit comments