File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 421
421
@pipeline = ImageProcessing ::MiniMagick . source ( @portrait )
422
422
end
423
423
424
- it "rotates the image by specifed number of degrees" do
424
+ it "rotates the image by specified number of degrees" do
425
425
assert_dimensions [ 600 , 800 ] , @pipeline . rotate! ( 0 )
426
426
assert_dimensions [ 800 , 600 ] , @pipeline . rotate! ( 90 )
427
427
assert_dimensions [ 600 , 800 ] , @pipeline . rotate! ( "180" )
Original file line number Diff line number Diff line change 394
394
@pipeline = ImageProcessing ::Vips . source ( @portrait )
395
395
end
396
396
397
- it "rotates by muliples of 90" do
397
+ it "rotates by multiples of 90" do
398
398
assert_dimensions [ 600 , 800 ] , @pipeline . rotate! ( 0 )
399
399
assert_dimensions [ 800 , 600 ] , @pipeline . rotate! ( 90 )
400
400
assert_dimensions [ 600 , 800 ] , @pipeline . rotate! ( 180 )
You can’t perform that action at this time.
0 commit comments